예제 #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
 static void Main()
 {
     using (var game = new MineGame())
         game.Run();
 }
예제 #4
0
 static void Main()
 {
     using (var game = new MineGame())
         game.Run();
 }