cmpsc330hw4/player.h

14 lines
226 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 {
public:
virtual void selectLineLocation(Board& board, int& row, int& col) = 0;
virtual char getName() const = 0;
};
#endif //HW4_PLAYER_H