#ifndef SRC_BOT_H_ #define SRC_BOT_H_ #include "board/board.hpp" #include 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_ */