1
0
forked from noxious/client

Updated types

This commit is contained in:
2024-07-25 21:05:10 +02:00
parent 20d4167dd3
commit a14f21fdc6
2 changed files with 12 additions and 11 deletions

View File

@ -156,7 +156,7 @@ export type Sprite = {
characterTypes: CharacterType[]
}
export type spriteAction = {
export type SpriteAction = {
id: string
spriteId: string
sprite: Sprite
@ -168,7 +168,14 @@ export type spriteAction = {
frameWidth: number
frameHeight: number
frameSpeed: number
images?: string[]
images: SpriteActionImage[]
}
export type SpriteActionImage = {
id: string
spriteActionId: string
spriteAction: SpriteAction
order: number
}
export type Chat = {