Renamed store files to (xyz)Store for better readability

This commit is contained in:
2024-09-22 00:53:29 +02:00
parent 88bd039a04
commit 42291b93eb
44 changed files with 59 additions and 59 deletions

View File

@ -67,8 +67,8 @@
<script setup lang="ts">
import type { Sprite, SpriteAction } from '@/types'
import { computed, onBeforeUnmount, onMounted, ref, watch } from 'vue'
import { useAssetManagerStore } from '@/stores/assetManager'
import { useGameStore } from '@/stores/game'
import { useAssetManagerStore } from '@/stores/assetManagerStore'
import { useGameStore } from '@/stores/gameStore'
import Accordion from '@/components/utilities/Accordion.vue'
import SpriteActionsInput from '@/components/gameMaster/assetManager/partials/sprite/partials/SpriteImagesInput.vue'
import { uuidv4 } from '@/utilities'