summaryrefslogtreecommitdiffstats
path: root/src/model/Direction.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'src/model/Direction.coffee')
-rw-r--r--src/model/Direction.coffee13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/model/Direction.coffee b/src/model/Direction.coffee
deleted file mode 100644
index 5c49c80..0000000
--- a/src/model/Direction.coffee
+++ /dev/null
@@ -1,13 +0,0 @@
-'use strict'
-
-
-Direction =
- NORTH: 0
- EAST: 1
- SOUTH: 2
- WEST: 3
-
- reverse: (d) -> (d+2)%4
-
-
-module.exports = Direction