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

@ -1,6 +1,6 @@
import { computed, type Ref, ref } from 'vue'
import { getTile, tileToWorldXY } from '@/composables/zoneComposable'
import { useZoneEditorStore } from '@/stores/zoneEditor'
import { useZoneEditorStore } from '@/stores/zoneEditorStore'
import config from '@/config'
export function useZoneEditorPointerHandlers(scene: Phaser.Scene, layer: Phaser.Tilemaps.TilemapLayer, waypoint: Ref<{ visible: boolean; x: number; y: number }>, camera: Ref<Phaser.Cameras.Scene2D.Camera>, isDragging: Ref<boolean>) {