summaryrefslogtreecommitdiff
path: root/ai_mm.h
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2019-02-17 00:13:40 +0100
committertomsmeding <tom.smeding@gmail.com>2019-02-17 00:13:40 +0100
commit9d0f4baa7d82d896b9660dfb2fe484129d5cfd13 (patch)
treeefe557b18123c685e4b5e3434b307f9ca785fc73 /ai_mm.h
parenta9e8a7ff0e993d946c719b0bea8735483f0e6a2d (diff)
WIP mm player
Diffstat (limited to 'ai_mm.h')
-rw-r--r--ai_mm.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/ai_mm.h b/ai_mm.h
new file mode 100644
index 0000000..7388f75
--- /dev/null
+++ b/ai_mm.h
@@ -0,0 +1,11 @@
+#pragma once
+
+#include "board.h"
+
+using namespace std;
+
+
+namespace MM {
+ // bd will be unchanged upon return
+ int calcMove(Board &bd, uint8_t myclr);
+}