#ifndef SRC_BOT_H_ #define SRC_BOT_H_ #include "board.hpp" Move EngineGetBestMove(Game *b); float EvaluateBoardForWhite(Game *b); float minimax(int depth, Game *b, float alpha, float beta); #endif /* SRC_BOT_H_ */