aboutsummaryrefslogtreecommitdiff
path: root/src/uci.hpp
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-07-27 20:14:54 +0200
committerAdam <adammegarules1@gmail.com>2026-07-27 20:14:54 +0200
commit51d27e1ab9058c9e0fafb399e22edf7b38470510 (patch)
treef0528298123fcb33eb426a5aa099afd2a8d00a90 /src/uci.hpp
parentf1ded0290393709d437c6e149861ceb91d241c64 (diff)
adding uci
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_ */