aboutsummaryrefslogtreecommitdiff
path: root/src/bot.hpp
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-07-27 18:53:55 +0200
committerAdam <adammegarules1@gmail.com>2026-07-27 18:53:55 +0200
commit322e745ef6078be6c6016cf4d2b0186c97d8a435 (patch)
treec8543502771d6c7ddc56018b6d07285e78a53381 /src/bot.hpp
parent178190a723730485c0450552bfdef4ec7c8fac38 (diff)
big commit adding bot
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_ */