Ejemplo n.º 1
0
 protected override void OnCreate(Bundle bundle)
 {
     base.OnCreate(bundle);
     Game1.Activity = this;
     var g = new Game1();
     SetContentView(g.Window);
     g.Run();
 }
Ejemplo n.º 2
0
		public override void FinishedLaunching (UIApplication app)
		{
			game = new Game1 ();
			game.Run ();
		}
Ejemplo n.º 3
0
		public override void FinishedLaunching (MonoMac.Foundation.NSObject notification)
		{
			game = new Game1();
			game.Run();
		}