aboutsummaryrefslogtreecommitdiff
path: root/src/bot.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bot.hpp')
-rw-r--r--src/bot.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bot.hpp b/src/bot.hpp
index 1a2b951..1403bc4 100644
--- a/src/bot.hpp
+++ b/src/bot.hpp
@@ -3,6 +3,7 @@
#include "board.hpp"
Move EngineGetBestMove(Board *b);
-float EvaluateBoard(Board *b);
+float EvaluateBoardForWhite(Board *b);
+float minimax(int depth, Board *b, float alpha, float beta);
#endif /* SRC_BOT_H_ */