aboutsummaryrefslogtreecommitdiff
path: root/include/rand_ai.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/rand_ai.hpp')
-rw-r--r--include/rand_ai.hpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/rand_ai.hpp b/include/rand_ai.hpp
new file mode 100644
index 0000000..9739dae
--- /dev/null
+++ b/include/rand_ai.hpp
@@ -0,0 +1,17 @@
+#ifndef RAND_AI_HPP
+# define RAND_AI_HPP
+
+#include "ai.hpp"
+#include "game.hpp"
+
+class RandAI : public AI
+{
+ public:
+ RandAI(Game *g);
+ Direction move();
+
+ private:
+ Game *game;
+};
+
+#endif