From ab198bd13a44344989c34ee1fda1e56fa00cbe1f Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 27 Jul 2026 20:44:07 +0200 Subject: making it uci compatible --- src/uci.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/uci.hpp') diff --git a/src/uci.hpp b/src/uci.hpp index 9ef939d..18e216e 100644 --- a/src/uci.hpp +++ b/src/uci.hpp @@ -2,12 +2,14 @@ #define SRC_UCI_H_ #include "board.hpp" +#include #include int startREPL(); void PrintMoves(const std::vector &moves); bool isValidChessRank(char rank); bool isValidChessFile(char rank); - -void UciInit(); +Move UciToMove(std::string uci); +void LogUci(const std::string &message); +void Uci(); #endif /* SRC_UCI_H_ */ -- cgit v1.2.3