diff options
| author | Adam <adammegarules1@gmail.com> | 2026-07-27 20:14:54 +0200 |
|---|---|---|
| committer | Adam <adammegarules1@gmail.com> | 2026-07-27 20:14:54 +0200 |
| commit | 51d27e1ab9058c9e0fafb399e22edf7b38470510 (patch) | |
| tree | f0528298123fcb33eb426a5aa099afd2a8d00a90 /src/bot.hpp | |
| parent | f1ded0290393709d437c6e149861ceb91d241c64 (diff) | |
adding uci
Diffstat (limited to 'src/bot.hpp')
| -rw-r--r-- | src/bot.hpp | 6 |
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_ */ |
