jumpstorm/client/lib/interfaces/Direction.ts
2023-07-19 20:38:24 -07:00

7 lines
92 B
TypeScript

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