diff options
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_ */ |
