aboutsummaryrefslogtreecommitdiff
path: root/src/uci.hpp
blob: 9ef939db6c244d45ca9b0e2050b236175cbe2f50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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_ */