diff options
| author | Adam <adammegarules1@gmail.com> | 2026-07-27 20:14:54 +0200 |
|---|---|---|
| committer | Adam <adammegarules1@gmail.com> | 2026-07-27 20:14:54 +0200 |
| commit | 51d27e1ab9058c9e0fafb399e22edf7b38470510 (patch) | |
| tree | f0528298123fcb33eb426a5aa099afd2a8d00a90 /src/uci.hpp | |
| parent | f1ded0290393709d437c6e149861ceb91d241c64 (diff) | |
adding uci
Diffstat (limited to 'src/uci.hpp')
| -rw-r--r-- | src/uci.hpp | 13 |
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_ */ |
