public override void FinishedLaunching (UIApplication app) { // Fun begins.. using (PerPixelCollisionGame game = new PerPixelCollisionGame()) { game.Run (); } }
/// <summary> /// The main entry point for the application. /// </summary> static void Main() { using (PerPixelCollisionGame game = new PerPixelCollisionGame()) { game.Run(); } }
public override void FinishedLaunching (MonoMac.Foundation.NSObject notification) { game = new PerPixelCollisionGame(); game.Run (); }
public override void FinishedLaunching(UIApplication app) { // Fun begins.. game = new PerPixelCollisionGame(); game.Run(); }
public override void FinishedLaunching(MonoMac.Foundation.NSObject notification) { using (PerPixelCollisionGame game = new PerPixelCollisionGame()) { game.Run(); } }