blob: 1403bc414a5e988e70654927be2a4ce24ef742dc (
plain)
1
2
3
4
5
6
7
8
9
|
#ifndef SRC_BOT_H_
#define SRC_BOT_H_
#include "board.hpp"
Move EngineGetBestMove(Board *b);
float EvaluateBoardForWhite(Board *b);
float minimax(int depth, Board *b, float alpha, float beta);
#endif /* SRC_BOT_H_ */
|