Esempio n. 1
0
        private static void Main()
        {
            Info        myInfo  = new Info();
            TicTacToeUI theGame = new TicTacToeUI();

            myInfo.DisplayInfo();
            theGame.Play();
        }
Esempio n. 2
0
        private static void Main()
        {
            Info        myID    = new Info();
            TicTacToeUI theGame = new TicTacToeUI();

            myID.StudentInfo();
            theGame.Play();
        }
        static void Main(string[] args)
        {
            Info myInfo = new Info();
            myInfo.DisplayInfo("Tic Tac Toe Game");

            TicTacToeUI newTTT = new TicTacToeUI();
            newTTT.Play();
            Console.ReadKey();
        }