コード例 #1
0
ファイル: TowerDefense.cs プロジェクト: ksu-gdc/RKO
 public TowerDefense()
     : base()
 {
     graphics = new GraphicsDeviceManager(this);
     Content.RootDirectory = "Content";
     IsMouseVisible        = true;
     _game = this;
 }
コード例 #2
0
 static void Main()
 {
     using (var game = new TowerDefense())
         game.Run();
 }