aboutsummaryrefslogtreecommitdiff
path: root/src/uci.hpp
diff options
context:
space:
mode:
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_ */