aboutsummaryrefslogtreecommitdiff
path: root/src/bot.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bot.hpp')
-rw-r--r--src/bot.hpp9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/bot.hpp b/src/bot.hpp
index c271882..9f97e2c 100644
--- a/src/bot.hpp
+++ b/src/bot.hpp
@@ -3,6 +3,13 @@
#include "board/board.hpp"
-Move GetBestMove(Game *b, int depth);
+struct move_options {
+ int wtime;
+ int btime;
+ int wncr;
+ int bncr;
+};
+
+Move GetBestMove(Game *b, int depth, move_options options);
#endif /* SRC_BOT_H_ */