Added characterChest component for chest equipment, moved some files

This commit is contained in:
2024-12-27 00:27:54 +01:00
parent 9c105d6df6
commit 231f19a30f
49 changed files with 156 additions and 70 deletions

View File

@ -1,9 +1,9 @@
import { defineStore } from 'pinia'
import { io, Socket } from 'socket.io-client'
import type { AssetDataT, Character, Notification, User, WorldSettings } from '@/types'
import config from '@/config'
import type { AssetDataT, Character, Notification, User, WorldSettings } from '@/application/types'
import config from '@/application/config'
import { useCookies } from '@vueuse/integrations/useCookies'
import { getDomain } from '@/utilities'
import { getDomain } from '@/application/utilities'
export const useGameStore = defineStore('game', {
state: () => {