Ejemplo n.º 1
0
        static void Main(string[] args)
        {
            Console.WriteLine("Welcome to Tic Tac Toe. To choose a spot, type 1A, replace 1 with numbers 1, 2, or 3, and A with A, B, or C to determine move");
            TicTacToe t = new TicTacToe();

            t.initializeBoard();
            t.handleMoves();
            //Console.ReadLine();
        }