18 lines
324 B
C++
18 lines
324 B
C++
|
|
#ifndef HW4_STRATEGIC_PLAYER_H
|
|
#define HW4_STRATEGIC_PLAYER_H
|
|
|
|
#include "board.h"
|
|
#include "player.h"
|
|
|
|
class StrategicPlayer: public Player {
|
|
char name;
|
|
public:
|
|
StrategicPlayer(char name);
|
|
|
|
void selectLineLocation(Board& board, int& row, int& col);
|
|
char getName() const;
|
|
};
|
|
|
|
#endif //HW4_STRATEGIC_PLAYER_H
|