2024-11-19 23:54:26 +00:00
|
|
|
|
|
|
|
#ifndef HW4_STRATEGIC_PLAYER_H
|
|
|
|
#define HW4_STRATEGIC_PLAYER_H
|
|
|
|
|
|
|
|
#include "board.h"
|
|
|
|
#include "player.h"
|
|
|
|
|
|
|
|
class StrategicPlayer: public Player {
|
|
|
|
char name;
|
|
|
|
public:
|
2024-11-20 00:11:06 +00:00
|
|
|
StrategicPlayer(char name);
|
2024-11-19 23:54:26 +00:00
|
|
|
|
|
|
|
void selectLineLocation(Board& board, int& row, int& col);
|
2024-11-20 00:11:06 +00:00
|
|
|
char getName() const;
|
2024-11-19 23:54:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //HW4_STRATEGIC_PLAYER_H
|