From 51d27e1ab9058c9e0fafb399e22edf7b38470510 Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 27 Jul 2026 20:14:54 +0200 Subject: adding uci --- src/uci.hpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 src/uci.hpp (limited to 'src/uci.hpp') diff --git a/src/uci.hpp b/src/uci.hpp new file mode 100644 index 0000000..9ef939d --- /dev/null +++ b/src/uci.hpp @@ -0,0 +1,13 @@ +#ifndef SRC_UCI_H_ +#define SRC_UCI_H_ + +#include "board.hpp" +#include + +int startREPL(); +void PrintMoves(const std::vector &moves); +bool isValidChessRank(char rank); +bool isValidChessFile(char rank); + +void UciInit(); +#endif /* SRC_UCI_H_ */ -- cgit v1.2.3