Exemplo n.º 1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (PixieGame game = new PixieGame())
     {
         game.Run();
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     try
     {
         using (PixieGame game = new PixieGame())
         {
             game.Run();
         }
     }
     catch (Exception ex)
     {
         MsgBox.Show("FEIG! (Fatal Error In Game)",
                     "Fatal Error - if you want you can notify the author. Or whatever.\n" + ex.Message + "\n" + ex.ToString());
     }
 }