From 4aac933e3c08535501558448ce43ce610b5e317f Mon Sep 17 00:00:00 2001 From: Adam Date: Wed, 29 Jul 2026 19:55:22 +0200 Subject: adding depth support --- src/bot.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/bot.hpp') diff --git a/src/bot.hpp b/src/bot.hpp index 26ae9f2..0ca0d05 100644 --- a/src/bot.hpp +++ b/src/bot.hpp @@ -3,7 +3,7 @@ #include "board.hpp" #include -Move EngineGetBestMove(Game *b); +Move EngineGetBestMove(Game *b, int depth); float EvaluateBoardForWhite(Game *b, int depth); float minimax(int depth, Game *b, float alpha, float beta); int ScoreMove(const Game *board, const Move &move); -- cgit v1.2.3