Пример #1
0
        static void Main()
        {
            Console.Title           = "Breath.exe";
            Console.ForegroundColor = ConsoleColor.Black;
            Console.BackgroundColor = ConsoleColor.White;

            Console.WriteLine(@"   /(,-.     /`-.   )\.---.     /`-.   .-,.-.,-.      .'(  
 ,' _   )  ,' _  \ (   ,-._(  ,' _  \  ) ,, ,. (  ,') \  ) 
(  '-' (  (  '-' (  \  '-,   (  '-' (  \( |(  )/ (  '-' (  
 )  _   )  ) ,_ .'   ) ,-`    )   _  )    ) \     ) .-.  ) 
(  '-' /  (  ' ) \  (  ``-.  (  ,' ) \    \ (    (  ,  ) \ 
 )/._.'    )/   )/   )..-.(   )/    )/     )/     )/    )/ 
                                                           ");

            Console.ResetColor();

            Game.StartGame();

            Game.Choice();

            Game.EndGame();

            Console.ReadKey();
        }