summaryrefslogtreecommitdiff
path: root/ai_str.h
diff options
context:
space:
mode:
authorTom Smeding <tom.smeding@gmail.com>2019-02-19 10:34:15 +0100
committerTom Smeding <tom.smeding@gmail.com>2019-02-19 10:34:15 +0100
commitdfac9e7da9ec4534384c73a9501061d8972ad10d (patch)
tree7e20555958eaad4d621609014e2e72ec4c1ff0dd /ai_str.h
parentbffa3deadebb56cf44e93140ed3a3cec6311a105 (diff)
Add simple strategy AIHEADmaster
Diffstat (limited to 'ai_str.h')
-rw-r--r--ai_str.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/ai_str.h b/ai_str.h
new file mode 100644
index 0000000..3c3d438
--- /dev/null
+++ b/ai_str.h
@@ -0,0 +1,11 @@
+#pragma once
+
+#include "board.h"
+
+using namespace std;
+
+
+namespace STR {
+ // bd will be unchanged upon return
+ int calcMove(Board &bd, uint8_t myclr);
+}