1
0
forked from noxious/client

Sorted imports

This commit is contained in:
2025-01-01 19:05:24 +01:00
parent 6ec9f8a7bc
commit 2abce7a7e7
66 changed files with 292 additions and 246 deletions

View File

@ -34,10 +34,10 @@
</template>
<script setup lang="ts">
import type { CharacterHair, CharacterGender, Sprite } from '@/application/types'
import { computed, onBeforeUnmount, onMounted, ref, watch } from 'vue'
import type { CharacterGender, CharacterHair, Sprite } from '@/application/types'
import { useAssetManagerStore } from '@/stores/assetManagerStore'
import { useGameStore } from '@/stores/gameStore'
import { computed, onBeforeUnmount, onMounted, ref, watch } from 'vue'
const gameStore = useGameStore()
const assetManagerStore = useAssetManagerStore()