cmpsc330hw4/player.h

20 lines
307 B
C
Raw Normal View History

2024-11-19 23:54:26 +00:00
#ifndef HW4_PLAYER_H
#define HW4_PLAYER_H
#include "board.h"
class Player {
private:
char name;
public:
Player(char name){
this->name = name;
}
virtual void selectLineLocation(Board& board, int& row, int& col) = 0;
virtual char getName() const = 0;
};
#endif //HW4_PLAYER_H