forked from noxious/client
Updated types
This commit is contained in:
11
src/types.ts
11
src/types.ts
@ -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 = {
|
||||
|
Reference in New Issue
Block a user