aboutsummaryrefslogtreecommitdiff
path: root/src/uci.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uci.hpp')
-rw-r--r--src/uci.hpp13
1 files changed, 13 insertions, 0 deletions
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 <vector>
+
+int startREPL();
+void PrintMoves(const std::vector<Move> &moves);
+bool isValidChessRank(char rank);
+bool isValidChessFile(char rank);
+
+void UciInit();
+#endif /* SRC_UCI_H_ */