ok so i need to create a cell class for a tic tac toe game. the cell class should have a row, column coordinate, and an internal and external display value.
heres what i have so far. can anyone give me some hints or point me in a direction where i can make this work? thx
#include <iostream>
using namespace std;
class Cell
{
public:
Cell()
{
for ( int i = 0; i < 9; i++)
{
cells[9] ;
}
}
void askUser()
{
char s = ' ';
cout << "Please choose where you would like to enter your letter:" << endl;
cin >> r >> s >> c;
}
private:
int r;
int c;
int cells[9];
};