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

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

            game.PrintBoard();
            game.Play();
            Console.WriteLine("Press any key to exit...");
            Console.ReadKey();
        }