blob: 5f457c429c340bcc14e8cddaa4d43b491e650879 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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_ */
|