예제 #1
0
 internal Chunk(RegionFile region, int x, int z, int offset, int size)
 {
     Region = region;
     X      = x;
     Z      = z;
     Offset = offset;
     Size   = size;
 }
예제 #2
0
 public void AddTo(RegionFile region)
 {
     region.AddChunk(this);
 }