cmpsc330hw4/strategic_player.h
Sandipsinh Rathod 273662fde0 cleanup
2024-11-19 19:11:06 -05:00

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