aboutsummaryrefslogtreecommitdiff
path: root/include/2048.hpp
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-03-18 21:36:21 +0100
committerCharles <sircharlesaze@gmail.com>2020-03-18 21:36:21 +0100
commitcae4150779c587edcc40b75f04624ab3971bbed6 (patch)
treed4d8a749ddcd7fdedc1cb5d3b9265e5df196f9f3 /include/2048.hpp
parent79ab0bdeedd6e7f97b4c246b4319af5eac545061 (diff)
download2048-cae4150779c587edcc40b75f04624ab3971bbed6.tar.gz
2048-cae4150779c587edcc40b75f04624ab3971bbed6.tar.bz2
2048-cae4150779c587edcc40b75f04624ab3971bbed6.zip
random spawn
Diffstat (limited to 'include/2048.hpp')
-rw-r--r--include/2048.hpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/2048.hpp b/include/2048.hpp
new file mode 100644
index 0000000..fff7a80
--- /dev/null
+++ b/include/2048.hpp
@@ -0,0 +1,12 @@
+#ifndef H2048_HPP
+# define H2048_HPP
+
+typedef enum
+{
+ DIRECTION_LEFT,
+ DIRECTION_RIGHT,
+ DIRECTION_DOWN,
+ DIRECTION_UP
+} Direction;
+
+#endif