Sample showing how to use geometry that is programatically generated as part of the content pipeline build process.
Inheritance: Microsoft.Xna.Framework.Game
Example #1
0
 static void Main()
 {
     using (TerrainDemoGame game = new TerrainDemoGame())
     {
         game.Run();
     }
 }
Example #2
0
 /// <summary>
 /// アプリケーションのメイン エントリー ポイントです。
 /// </summary>
 static void Main(string[] args)
 {
     using (TerrainDemoGame game = new TerrainDemoGame())
     {
         game.Run();
     }
 }