コード例 #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();
 }