1
0
forked from noxious/client
This commit is contained in:
2025-01-07 22:20:46 +01:00
parent c2db9b5469
commit 574777da80
19 changed files with 385 additions and 416 deletions

View File

@ -174,10 +174,9 @@ export type Character = {
positionX: number
positionY: number
rotation: number
characterType: CharacterType | null | string
characterHair: CharacterHair | null
mapId: UUID
map: Map
characterType: UUID | null
characterHair: UUID | null
map: UUID
chats: Chat[]
items: CharacterItem[]
equipment: CharacterEquipment[]
@ -256,6 +255,6 @@ export type WeatherState = {
}
export type mapLoadData = {
map: Map
mapId: UUID
characters: MapCharacter[]
}