public override void FinishedLaunching(NSObject notification) { var appSettings = new AppSettings ("Blimey Engine Demo") { FullScreen = true, MouseGeneratesTouches = true }; var entryPoint = new Demo (); var api = new Api (); platform = new Platform (api); platform.Start (appSettings, entryPoint); }
// This method is invoked when the application has // loaded its UI and is ready to run public override Boolean FinishedLaunching( MonoTouch.UIKit.UIApplication app, MonoTouch.Foundation.NSDictionary options) { var appSettings = new AppSettings ("Engine Demo") { FullScreen = true, MouseGeneratesTouches = true }; var entryPoint = new Demo (); var api = new Api (); platform = new Platform (api); platform.Start (appSettings, entryPoint); return true; }
public static void Main( string[] args ) { var appSettings = new AppSettings ("Blimey Engine Demo") { FullScreen = true, MouseGeneratesTouches = true }; var entryPoint = new Demo(); IApi api = new Api (); using (var platform = new Platform (api)) { platform.Start (appSettings, entryPoint); (api as Api).Run (); platform.Stop (); } }