aboutsummaryrefslogtreecommitdiff
path: root/src/bot.hpp
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-07-29 12:04:28 +0200
committerAdam <adammegarules1@gmail.com>2026-07-29 12:04:28 +0200
commitb05b0862b9ad4f4c2ebc15b3ce23b2bcf0b21378 (patch)
treee538a887ad2de54527632887f3aa51ec4b7a7864 /src/bot.hpp
parent828b5a414a58d1b09c201fd33cb465e768589610 (diff)
improving the bot
Diffstat (limited to 'src/bot.hpp')
-rw-r--r--src/bot.hpp2
1 files changed, 2 insertions, 0 deletions
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 <vector>
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<Move> GetSortedLegalMoves(Game *g);
#endif /* SRC_BOT_H_ */