blob: 907554d0deccd4566839b753cbe2026e5ca4f69f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef SRC_BOT_H_
#define SRC_BOT_H_
#include "board/board.hpp"
#include <cstdint>
struct move_options {
int wtime;
int btime;
int wncr;
int bncr;
};
uint16_t GetBestMove(Game *b, int depth, move_options options);
#endif /* SRC_BOT_H_ */
|