aboutsummaryrefslogtreecommitdiff
path: root/src/bot.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bot.hpp')
-rw-r--r--src/bot.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bot.hpp b/src/bot.hpp
index 74daefa..0b92292 100644
--- a/src/bot.hpp
+++ b/src/bot.hpp
@@ -3,7 +3,7 @@
#include "board.hpp"
Move EngineGetBestMove(Game *b);
-float EvaluateBoardForWhite(Game *b);
+float EvaluateBoardForWhite(Game *b, int depth);
float minimax(int depth, Game *b, float alpha, float beta);
void LogMove(const Move &move);