summaryrefslogtreecommitdiff
path: root/client/src/akkamon/render/Direction.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/akkamon/render/Direction.ts')
-rw-r--r--client/src/akkamon/render/Direction.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/client/src/akkamon/render/Direction.ts b/client/src/akkamon/render/Direction.ts
new file mode 100644
index 0000000..a173585
--- /dev/null
+++ b/client/src/akkamon/render/Direction.ts
@@ -0,0 +1,7 @@
+export enum Direction {
+ NONE = "NONE",
+ LEFT = "LEFT",
+ UP = "UP",
+ RIGHT = "RIGHT",
+ DOWN = "DOWN",
+}