Updated tiles, improved folder & file structure, npm update, more progress on zone editor

This commit is contained in:
2024-06-11 17:15:53 +02:00
parent 44814907a0
commit 4dcc11706a
12 changed files with 90 additions and 44 deletions

View File

@ -10,10 +10,10 @@
import { type Ref, ref } from 'vue'
import { useSocketStore } from '@/stores/socket'
import Notifications from '@/components/utilities/Notifications.vue'
import Login from '@/components/screens/Login.vue'
import Register from '@/components/screens/Register.vue'
import Characters from '@/components/screens/Characters.vue'
import Game from '@/components/Game.vue'
import Login from '@/screens/Login.vue'
import Register from '@/screens/Register.vue'
import Characters from '@/screens/Characters.vue'
import Game from '@/screens/Game.vue'
const screen: Ref<string> = ref('login')
const socket = useSocketStore()