summaryrefslogtreecommitdiff
path: root/include/constants/direction.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/constants/direction.h')
-rw-r--r--include/constants/direction.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/include/constants/direction.h b/include/constants/direction.h
new file mode 100644
index 0000000..5f2bfb3
--- /dev/null
+++ b/include/constants/direction.h
@@ -0,0 +1,16 @@
+#ifndef GUARD_CONSTANTS_DIRECTION_H
+#define GUARD_CONSTANTS_DIRECTION_H
+
+enum Direction
+{
+ DIRECTION_SOUTH,
+ DIRECTION_SOUTHEAST,
+ DIRECTION_EAST,
+ DIRECTION_NORTHEAST,
+ DIRECTION_NORTH,
+ DIRECTION_NORTHWEST,
+ DIRECTION_WEST,
+ DIRECTION_SOUTHWEST
+};
+
+#endif