/// <summary> /// The main entry point for the application. /// </summary> static void Main(string[] args) { using (OrientationGame game = new OrientationGame()) { game.Run(); } }
protected override void SetupMainPage(MainPage mainPage) { var game = new OrientationGame(); mainPage.Children.Add(game); game.Play(); }
public override void FinishedLaunching(UIApplication application) { game = new OrientationGame(); game.Run(); }