예제 #1
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (FroggerGame = new FroggerGame())
     {
         FroggerGame.Run();
     }
 }
예제 #2
0
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (FroggerGame game = new FroggerGame())
     {
         game.Run();
     }
 }
예제 #3
0
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);
            var g = new FroggerGame();

            SetContentView((View)g.Services.GetService(typeof(View)));
            g.Run();
        }