/// <summary> /// The main entry point for the application. /// </summary> static void Main(string[] args) { using (FroggerGame = new FroggerGame()) { FroggerGame.Run(); } }
/// <summary> /// The main entry point for the application. /// </summary> static void Main(string[] args) { using (FroggerGame game = new FroggerGame()) { game.Run(); } }
protected override void OnCreate(Bundle bundle) { base.OnCreate(bundle); var g = new FroggerGame(); SetContentView((View)g.Services.GetService(typeof(View))); g.Run(); }