#ifndef _AIPLAYER_H #define _AIPLAYER_H #include "Player.h" #include "Position.h" #include "Chessboard.h" #include class AiPlayer: public Player { public: vector> get_solve(Chessboard board, char turn, int depth); virtual pair get_move(Chessboard board, char color); }; #endif