aboutsummaryrefslogtreecommitdiff
path: root/src/bot.hpp
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-07-27 15:14:01 +0200
committerAdam <adammegarules1@gmail.com>2026-07-27 15:14:01 +0200
commit35b21c6d970857dd945c5dfa476a27c8c2a8b1f6 (patch)
tree68547059dfd9c402cfe535cf5b89f84c47a77687 /src/bot.hpp
parent03437563f91a6f760fa8b0283e2e74586a9c7dac (diff)
adding bot
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_ */