aboutsummaryrefslogtreecommitdiff
path: root/include/ai.hpp
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-03-19 15:22:00 +0100
committerCharles <sircharlesaze@gmail.com>2020-03-19 15:22:00 +0100
commit19ae4e74aedbbfde9aaed9241f616decc3ec9059 (patch)
treec4eca1b207261e24b645d5d861b3b27631ead75e /include/ai.hpp
parentc435852cc6147a0af23ef12cc0a07a195ac60756 (diff)
download2048-19ae4e74aedbbfde9aaed9241f616decc3ec9059.tar.gz
2048-19ae4e74aedbbfde9aaed9241f616decc3ec9059.tar.bz2
2048-19ae4e74aedbbfde9aaed9241f616decc3ec9059.zip
Interface for ai (tested with random AI)
Diffstat (limited to 'include/ai.hpp')
-rw-r--r--include/ai.hpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/ai.hpp b/include/ai.hpp
new file mode 100644
index 0000000..bdb6764
--- /dev/null
+++ b/include/ai.hpp
@@ -0,0 +1,17 @@
+#ifndef AI_HPP
+# define AI_HPP
+
+#include "2048.hpp"
+#include "game.hpp"
+
+class AI
+{
+ public:
+ // AI(Game *g);
+ virtual Direction move() = 0;
+
+ private:
+ Game *game;
+};
+
+#endif