aboutsummaryrefslogtreecommitdiff
path: root/src/bot.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bot.hpp')
-rw-r--r--src/bot.hpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/bot.hpp b/src/bot.hpp
new file mode 100644
index 0000000..1a2b951
--- /dev/null
+++ b/src/bot.hpp
@@ -0,0 +1,8 @@
+#ifndef SRC_BOT_H_
+#define SRC_BOT_H_
+
+#include "board.hpp"
+Move EngineGetBestMove(Board *b);
+float EvaluateBoard(Board *b);
+
+#endif /* SRC_BOT_H_ */