Beispiel #1
0
 public static void Result(int lapNumber)
 {
     Console.ForegroundColor = ConsoleColor.White;
         SecretCodeGame.ReturnSeconds();
         Console.WriteLine($"\n\n\t\t\t\tCONGRATULATIONS! You figured out the secret code!");
         Console.WriteLine($"\t\t\t\tYou managed on {lapNumber} guesses and {SecretCodeGame.Seconds} seconds.\n");
 }
Beispiel #2
0
        static void Main(string[] args)
        {
            Console.SetWindowSize(110, 45);

            Menu.ShowIntro();


            bool playAgain = true;

            while (playAgain)
            {
                Console.Clear();
                Menu.ShortIntro();

                Menu.ShowMenu();
                int choiceOfGame = Menu.Input(8);
                Console.Clear();
                switch (choiceOfGame)
                {
                case 0:
                    Console.WriteLine("Tack för den här gången. Välkommen åter!");
                    playAgain = false;
                    break;

                case 1:
                    BattleShipGame.PlayBattleShip();
                    break;

                case 2:
                    Yatzy.PlayYatzy();
                    break;

                case 3:
                    HangMan.PlayHangMan();
                    break;

                case 4:
                    SecretCodeGame.PlaySecretCode();
                    break;

                case 5:
                    FlappyBirdGame.PlayFlappyBird();
                    break;

                case 6:
                    SnakeGame.PlaySnake();
                    break;

                case 7:
                    Highscore.RunHighscore();
                    break;

                default:
                    break;
                }
            }
            Console.ReadLine();
        }