Example #1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (Game1 game = new Game1())
     {
         game.Run();
     }
 }
Example #2
0
		protected override void OnCreate (Bundle bundle)
		{
			base.OnCreate (bundle);
            Game1.Activity = this;
			var g = new Game1();
            SetContentView(g.Window);
            g.Run();
		}
Example #3
0
 public override void FinishedLaunching(UIApplication app)
 {
     // Fun begins..
     using (Game1 game = new Game1())
     {
         game.Run();
     }
 }
Example #4
0
 static void Main()
 {
     game = new Game1();
     game.Run();
 }
Example #5
0
		public override void FinishedLaunching (MonoMac.Foundation.NSObject notification)
		{
			game = new Game1 ();
			game.Run ();

		}