diff options
| author | Adam <adammegarules1@gmail.com> | 2026-07-27 20:44:07 +0200 |
|---|---|---|
| committer | Adam <adammegarules1@gmail.com> | 2026-07-27 20:44:07 +0200 |
| commit | ab198bd13a44344989c34ee1fda1e56fa00cbe1f (patch) | |
| tree | 202f3c7b5ecc19a6fa3e45124a49d341b914eba0 /src/uci.hpp | |
| parent | 51d27e1ab9058c9e0fafb399e22edf7b38470510 (diff) | |
making it uci compatible
Diffstat (limited to 'src/uci.hpp')
| -rw-r--r-- | src/uci.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
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 <string> #include <vector> int startREPL(); void PrintMoves(const std::vector<Move> &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_ */ |
