jumpstorm/engine/interfaces/Direction.ts

7 lines
92 B
TypeScript

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