aboutsummaryrefslogtreecommitdiff
path: root/src/uci.hpp
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-07-27 20:44:07 +0200
committerAdam <adammegarules1@gmail.com>2026-07-27 20:44:07 +0200
commitab198bd13a44344989c34ee1fda1e56fa00cbe1f (patch)
tree202f3c7b5ecc19a6fa3e45124a49d341b914eba0 /src/uci.hpp
parent51d27e1ab9058c9e0fafb399e22edf7b38470510 (diff)
making it uci compatible
Diffstat (limited to 'src/uci.hpp')
-rw-r--r--src/uci.hpp6
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_ */