workadventure/front/src/Phaser/Player/Animation.ts

14 lines
194 B
TypeScript

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