Player.h 205 B

1234567891011121314
  1. #ifndef _PLAYER_H
  2. #define _PLAYER_H
  3. #include "Chessboard.h"
  4. #include <utility>
  5. class Player
  6. {
  7. public:
  8. virtual std::pair<Position, Position> get_move(Chessboard board, char color) = 0;
  9. };
  10. #endif