blob: 9352c48424af72949126792742083e6f3024cdfa (
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 <string>
Move UciToMove(std::string uci);
void LogUci(const std::string &message);
void Uci();
Game initBoard(
std::string startingFEN,
std::unordered_map<uint64_t, TranspositionsEntry> *transPositions);
#endif /* SRC_UCI_H_ */
|