#ifndef HW4_PLAYER_H #define HW4_PLAYER_H #include "board.h" class Player { public: virtual void selectLineLocation(Board& board, int& row, int& col) = 0; virtual char getName() const = 0; }; #endif //HW4_PLAYER_H