From b05b0862b9ad4f4c2ebc15b3ce23b2bcf0b21378 Mon Sep 17 00:00:00 2001 From: Adam Date: Wed, 29 Jul 2026 12:04:28 +0200 Subject: improving the bot --- src/bot.hpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/bot.hpp') diff --git a/src/bot.hpp b/src/bot.hpp index b95822f..26ae9f2 100644 --- a/src/bot.hpp +++ b/src/bot.hpp @@ -2,8 +2,10 @@ #define SRC_BOT_H_ #include "board.hpp" +#include Move EngineGetBestMove(Game *b); float EvaluateBoardForWhite(Game *b, int depth); float minimax(int depth, Game *b, float alpha, float beta); int ScoreMove(const Game *board, const Move &move); +std::vector GetSortedLegalMoves(Game *g); #endif /* SRC_BOT_H_ */ -- cgit v1.2.3