コード例 #1
0
ファイル: Program.cs プロジェクト: PhilMoc/Wiggles
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (TowerAssault game = new TowerAssault())
     {
         game.Run();
     }
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: PhilMoc/Wiggles
 /// <summary>
 /// The main entry point for the application.
 /// </summary>
 static void Main(string[] args)
 {
     using (TowerAssault game = new TowerAssault())
     {
         game.Run();
     }
 }
コード例 #3
0
ファイル: TowerAssault.cs プロジェクト: PhilMoc/Wiggles
 internal TowerAssault()
 {
     wiggles = this;
     Graphics = new GraphicsDeviceManager(GameInstance);
     Content.RootDirectory = "Content";
     Settings = new GameSettings();
     MenuScreen.Fontname = "Fonts/menufont";
     SoundManager.Manager.SetContentManager(Content);
     Settings = GameSettings.LoadSettings();
     Camera = new Camera(
         this,
         new Vector3(750, 750, 2500),
         Vector3.Zero,
         Vector3.Up);
 }