cmpsc330hw4/player.h
Sandipsinh Rathod 273662fde0 cleanup
2024-11-19 19:11:06 -05:00

14 lines
226 B
C++

#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