blob: 18e216e43360f6f06035f64ff26214ccb396fc30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef SRC_UCI_H_
#define SRC_UCI_H_
#include "board.hpp"
#include <string>
#include <vector>
int startREPL();
void PrintMoves(const std::vector<Move> &moves);
bool isValidChessRank(char rank);
bool isValidChessFile(char rank);
Move UciToMove(std::string uci);
void LogUci(const std::string &message);
void Uci();
#endif /* SRC_UCI_H_ */
|