diff options
Diffstat (limited to 'src/repl.hpp')
| -rw-r--r-- | src/repl.hpp | 12 |
1 files changed, 12 insertions, 0 deletions
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 <vector> + +int startREPL(Board *b); +void PrintMoves(const std::vector<Move> &moves); +bool isValidChessRank(char rank); +bool isValidChessFile(char rank); + +#endif /* SRC_REPL_H_ */ |
