コード例 #1
0
ファイル: Chunk.cs プロジェクト: karlbloedorn/Mine
 public Chunk(MineGame g, int x, int y, int z)
 {
     this.chunk_x = x;
     this.chunk_y = y;
     this.chunk_z = z;
     this.game = g;
     this.blocks = new Block[MineGame.chunk_size, MineGame.chunk_size, MineGame.chunk_size];
 }
コード例 #2
0
 public Chunk(MineGame g, int x, int y, int z)
 {
     this.chunk_x = x;
     this.chunk_y = y;
     this.chunk_z = z;
     this.game    = g;
     this.blocks  = new Block[MineGame.chunk_size, MineGame.chunk_size, MineGame.chunk_size];
 }
コード例 #3
0
ファイル: Program.cs プロジェクト: karlbloedorn/Mine
 static void Main()
 {
     using (var game = new MineGame())
         game.Run();
 }
コード例 #4
0
 static void Main()
 {
     using (var game = new MineGame())
         game.Run();
 }