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.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/interfaces/Direction.ts b/engine/interfaces/Direction.ts
index 0bc6ef3..af1c7ac 100644
--- a/engine/interfaces/Direction.ts
+++ b/engine/interfaces/Direction.ts
@@ -1,6 +1,6 @@
export enum Direction {
- UP = "UP",
- DOWN = "DOWN",
- LEFT = "LEFT",
- RIGHT = "RIGHT",
+ UP = 'UP',
+ DOWN = 'DOWN',
+ LEFT = 'LEFT',
+ RIGHT = 'RIGHT'
}