From 7e8d89f357aaf8d8a6148ef051752dd53eb0285f Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 26 Jul 2026 19:16:57 +0200 Subject: adding repl --- src/repl.hpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/repl.hpp (limited to 'src/repl.hpp') diff --git a/src/repl.hpp b/src/repl.hpp new file mode 100644 index 0000000..5f457c4 --- /dev/null +++ b/src/repl.hpp @@ -0,0 +1,12 @@ +#ifndef SRC_REPL_H_ +#define SRC_REPL_H_ + +#include "board.hpp" +#include + +int startREPL(Board *b); +void PrintMoves(const std::vector &moves); +bool isValidChessRank(char rank); +bool isValidChessFile(char rank); + +#endif /* SRC_REPL_H_ */ -- cgit v1.2.3