diff options
Diffstat (limited to 'engine/interfaces/Direction.ts')
-rw-r--r-- | engine/interfaces/Direction.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/engine/interfaces/Direction.ts b/engine/interfaces/Direction.ts new file mode 100644 index 0000000..0bc6ef3 --- /dev/null +++ b/engine/interfaces/Direction.ts @@ -0,0 +1,6 @@ +export enum Direction { + UP = "UP", + DOWN = "DOWN", + LEFT = "LEFT", + RIGHT = "RIGHT", +} |