Пример #1
0
        public static void replay()
        {
            Console.WriteLine("Would you like to play again?  Yes or no ");
            string answer = ConsoleInput.ReadLine();

            if (answer == "Yes" || answer == "yes" || answer == "Y" || answer == "y")
            {
                GameFlow.Flow();
            }
            else
            {
                Console.WriteLine("Thanks for playing!, press any key to quit");
                Console.ReadKey();
            }
        }
Пример #2
0
        static void Main(string[] args)
        {
            GameFlow Game = new GameFlow();

            GameFlow.Flow();
        }