public ChunkBuffer(RegionFile r, int x, int z) : base(8096) { this.region = r; this.x = x; this.z = z; }
public ChunkBuffer(RegionFile r, int x, int z, int timestamp) : this(r, x, z) { _timestamp = timestamp; }
private RegionFile GetRegionFile() { RegionFile rf = _regionFile.Target as RegionFile; if (rf == null) { rf = new RegionFile(GetFilePath()); _regionFile.Target = rf; } return rf; }