1
0
forked from noxious/server

Better var. naming

This commit is contained in:
2025-01-09 15:58:16 +01:00
parent 849ef07297
commit 458293a5fc
5 changed files with 106 additions and 145 deletions

View File

@ -9,7 +9,7 @@ import TeleportService from '#services/teleportService'
class MapCharacter {
public readonly character: Character
public isMoving: boolean = false
public currentPath: Array<{ x: number; y: number }> | null = null
public currentPath: Array<{ positionX: number; positionY: number }> | null = null
constructor(character: Character) {
this.character = character