Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Point topLeft = new Point(5, 5);
            //topLeft.x = 3;
            //topLeft.y = 3;
            TicTacToe game = new TicTacToe(topLeft);

            game.Start();
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            TicTacToe game = new TicTacToe();

            game.gameActive();
        }