aboutsummaryrefslogtreecommitdiffstats
path: root/examples/shooter/direction.h
diff options
context:
space:
mode:
Diffstat (limited to 'examples/shooter/direction.h')
-rw-r--r--examples/shooter/direction.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/shooter/direction.h b/examples/shooter/direction.h
new file mode 100644
index 00000000..010c6b54
--- /dev/null
+++ b/examples/shooter/direction.h
@@ -0,0 +1,11 @@
+#ifndef EXAMPLES_SHOOTER_DIRECTION_H
+#define EXAMPLES_SHOOTER_DIRECTION_H
+
+enum class Direction {
+ LEFT,
+ DOWN,
+ RIGHT,
+ UP,
+};
+
+#endif