aboutsummaryrefslogtreecommitdiff
path: root/src/bot.hpp
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-07-27 20:14:54 +0200
committerAdam <adammegarules1@gmail.com>2026-07-27 20:14:54 +0200
commit51d27e1ab9058c9e0fafb399e22edf7b38470510 (patch)
treef0528298123fcb33eb426a5aa099afd2a8d00a90 /src/bot.hpp
parentf1ded0290393709d437c6e149861ceb91d241c64 (diff)
adding uci
Diffstat (limited to 'src/bot.hpp')
-rw-r--r--src/bot.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bot.hpp b/src/bot.hpp
index 1403bc4..242fdfe 100644
--- a/src/bot.hpp
+++ b/src/bot.hpp
@@ -2,8 +2,8 @@
#define SRC_BOT_H_
#include "board.hpp"
-Move EngineGetBestMove(Board *b);
-float EvaluateBoardForWhite(Board *b);
-float minimax(int depth, Board *b, float alpha, float beta);
+Move EngineGetBestMove(Game *b);
+float EvaluateBoardForWhite(Game *b);
+float minimax(int depth, Game *b, float alpha, float beta);
#endif /* SRC_BOT_H_ */