Hi, I have to make a Tic Tae Toe game using Classes but I have no idea how to even start.
I set 3x3 2 dimentional array as private member variable. What should be public variables?
Here is the instruction i was given:
1. The game board will be created as an object in the main program.This class will include a 2 dimensional (3 x 3) array of chars.Each element in this array can either hold an X or an O. This class should also have an appropriate constructor, getters and setters, display function, as well as a reset function.This class must also have a function called continue that returns a false if the game is over (either a stalemate or a win) or a true if the game can continue.