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