aboutsummaryrefslogtreecommitdiff
path: root/src/bot.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bot.hpp')
-rw-r--r--src/bot.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/bot.hpp b/src/bot.hpp
index 9f97e2c..907554d 100644
--- a/src/bot.hpp
+++ b/src/bot.hpp
@@ -2,6 +2,7 @@
#define SRC_BOT_H_
#include "board/board.hpp"
+#include <cstdint>
struct move_options {
int wtime;
@@ -10,6 +11,6 @@ struct move_options {
int bncr;
};
-Move GetBestMove(Game *b, int depth, move_options options);
+uint16_t GetBestMove(Game *b, int depth, move_options options);
#endif /* SRC_BOT_H_ */