示例#1
0
文件: Program.cs 项目: RyanDale/GTA
 static void Main(string[] args)
 {
     using (game = new Game1())
     {
         game.Run();
     }
 }
示例#2
0
文件: Activity1.cs 项目: RyanDale/GTA
 protected override void OnCreate(Bundle bundle)
 {
     base.OnCreate(bundle);
     Game1.Activity = this;
     game = new Game1();
     SetContentView(game.Window);
     game.Run();
 }