jumpstorm/engine/interfaces/Direction.ts

7 lines
91 B
TypeScript

export enum Direction {
UP = 'UP',
DOWN = 'DOWN',
LEFT = 'LEFT',
RIGHT = 'RIGHT'
}