static void Main(string[] args) { Point topLeft = new Point(5, 5); //topLeft.x = 3; //topLeft.y = 3; TicTacToe game = new TicTacToe(topLeft); game.Start(); }
static void Main(string[] args) { TicTacToe game = new TicTacToe(); game.gameActive(); }