示例#1
0
 /// <summary>
 /// Public constructor.
 /// </summary>
 public TerrainTest(LD28Game game)
 {
     _game     = game;
     _graphics = _game.GraphicsDevice;
 }
示例#2
0
 /// <summary>
 /// Public constructor.
 /// </summary>
 public MainLevel(LD28Game game)
 {
     _game     = game;
     _graphics = _game.GraphicsDevice;
     _content  = game.Content;
 }
示例#3
0
文件: Program.cs 项目: GarethIW/LD28
 static void Main()
 {
     game = new LD28Game();
     game.Run();
 }
示例#4
0
 /// <summary>
 /// Public constructor.
 /// </summary>
 public MainLevel(LD28Game game)
 {
     _game = game;
     _graphics = _game.GraphicsDevice;
     _content = game.Content;
 }
示例#5
0
 /// <summary>
 /// Public constructor.
 /// </summary>
 public TerrainTest(LD28Game game)
 {
     _game = game;
     _graphics = _game.GraphicsDevice;
 }