aboutsummaryrefslogtreecommitdiffstats
path: root/examples/shooter/direction.h
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2018-01-04 21:36:30 +0000
committerYann Herklotz <ymherklotz@gmail.com>2018-01-04 21:36:30 +0000
commit7b95e3a9eacf296f215c73e5d8ad9090a24adb20 (patch)
tree77125b5b30e08e48903e802ad4cdfddbb03074c1 /examples/shooter/direction.h
parenta47649786fb94684c415b230669fbf5343cb7c5d (diff)
downloadYAGE-7b95e3a9eacf296f215c73e5d8ad9090a24adb20.tar.gz
YAGE-7b95e3a9eacf296f215c73e5d8ad9090a24adb20.zip
[Engine] Now using stb_image to laod all kinds of textures.
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