Example #1
0
 /// <summary>
 /// アプリケーションのメイン エントリー ポイントです。
 /// </summary>
 static void Main(string[] args)
 {
     using (Game1 game = new Game1())
     {
         game.Run();
     }
 }
Example #2
0
 public titleState(Game1 game)
     : base(game)
 {
     Content = new ContentManager(game.Services);
     // TODO: ここで子コンポーネントを作成します。
     base.Initialize();
 }
Example #3
0
 public TgamePlay(Game1 game)
     : base(game)
 {
     // TODO: Construct any child components here
     base.Initialize();
 }