#ifndef GRID_H #define GRID_H #include "Umpire.h" #include "Player.h" // Class Interface class Grid { public: Grid(); ~Grid(); void printGrid(); void move (int r, int c); private: char grid[3][3]; char curToken; Umpire *umpire; Player *xPlayer; Player *oPlayer; }; #endif