Пример #1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (HauntedHouse game = new HauntedHouse())
     {
         game.Run();
     }
 }
Пример #2
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (HauntedHouse game = new HauntedHouse())
     {
         game.Run();
     }
 }
Пример #3
0
        static void Main(string[] args)
        {
            Console.WriteLine();
            Console.WriteLine();
            Console.WriteLine("HAUNTED HOUSE");
            Console.WriteLine("--------------");

            HauntedHouse hauntedHouse = new HauntedHouse();

            for (;;)
            {
                hauntedHouse.main();
            }
        }