summaryrefslogtreecommitdiff
path: root/ai_mcts.h
diff options
context:
space:
mode:
Diffstat (limited to 'ai_mcts.h')
-rw-r--r--ai_mcts.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/ai_mcts.h b/ai_mcts.h
new file mode 100644
index 0000000..1ef5d7f
--- /dev/null
+++ b/ai_mcts.h
@@ -0,0 +1,8 @@
+#pragma once
+
+#include "board.h"
+
+
+namespace AI::MCTS {
+ Move findMove(const Board &bd, int player);
+}