aboutsummaryrefslogtreecommitdiff
path: root/src/bot.hpp
blob: 9f97e2c48680bcca9f45a18a40c1eb7dce4b7e20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef SRC_BOT_H_
#define SRC_BOT_H_

#include "board/board.hpp"

struct move_options {
  int wtime;
  int btime;
  int wncr;
  int bncr;
};

Move GetBestMove(Game *b, int depth, move_options options);

#endif /* SRC_BOT_H_ */