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

@ -81,12 +81,12 @@
</template>
<script setup lang="ts">
import config from '@/config'
import config from '@/application/config'
import { ref, onMounted, computed } from 'vue'
import { useZoneEditorStore } from '@/stores/zoneEditorStore'
import { useGameStore } from '@/stores/gameStore'
import Modal from '@/components/utilities/Modal.vue'
import type { Tile } from '@/types'
import type { Tile } from '@/application/types'
const gameStore = useGameStore()
const isModalOpen = ref(false)