aboutsummaryrefslogtreecommitdiff
path: root/src/expectimax.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/expectimax.cpp')
-rw-r--r--src/expectimax.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/expectimax.cpp b/src/expectimax.cpp
new file mode 100644
index 0000000..3d8bf54
--- /dev/null
+++ b/src/expectimax.cpp
@@ -0,0 +1,12 @@
+#include "expectimax.hpp"
+
+Expectimax::Expectimax(Game *g)
+{
+ game = g;
+}
+
+Direction Expectimax::move()
+{
+ // algo(game->clone());
+ return DIRECTION_UP;
+}