21 lines
365 B
C++
21 lines
365 B
C++
//
|
|
// Created by sapan on 18-11-2024.
|
|
//
|
|
|
|
#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
|