workadventure/front/src/Phaser/Player/Animation.ts
2021-09-06 14:31:59 +02:00

11 lines
191 B
TypeScript

export enum PlayerAnimationDirections {
Down = "down",
Left = "left",
Up = "up",
Right = "right",
}
export enum PlayerAnimationTypes {
Walk = "walk",
Idle = "idle",
}