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

21 lines
347 B
C++

#ifndef HW4_RANDOM_PLAYER_H
#define HW4_RANDOM_PLAYER_H
#include "board.h"
#include "player.h"
#include <cstdlib>
#include <ctime>
class RandomPlayer : public Player {
char name;
public:
RandomPlayer(char name);
void selectLineLocation(Board &board, int &row, int &col);
char getName() const;
};
#endif //HW4_RANDOM_PLAYER_H