summaryrefslogtreecommitdiff
path: root/engine/interfaces/Direction.ts
diff options
context:
space:
mode:
Diffstat (limited to 'engine/interfaces/Direction.ts')
-rw-r--r--engine/interfaces/Direction.ts6
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",
+}