From 51d27e1ab9058c9e0fafb399e22edf7b38470510 Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 27 Jul 2026 20:14:54 +0200 Subject: adding uci --- src/bot.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/bot.hpp') 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_ */ -- cgit v1.2.3