summaryrefslogtreecommitdiff
path: root/src/engine/interfaces/Direction.ts
blob: c2e2c1e35dadab920aac03554f74bf44e3c03c2d (plain)
1
2
3
4
5
6
7
export enum Direction {
  UP = "UP",
  DOWN = "DOWN",
  LEFT = "LEFT",
  RIGHT = "RIGHT",
  NONE = "NONE",
}