Beispiel #1
0
        public void StartMenu()
        {
            while (true)
            {
                Console.Clear();
                Console.ForegroundColor = ConsoleColor.White;
                FullScreen();
                painter.DrawAdminPanel();

                string userChoice = Console.ReadLine();

                if (userChoice == "Start Game")
                {
                    Console.Clear();
                    StartGame();
                }
                else if (userChoice == "Exit")
                {
                    Environment.Exit(0);
                }
            }
        }