mirror of
https://github.com/jaquadro/NBTExplorer.git
synced 2025-01-10 01:46:24 +00:00
25 lines
527 B
C#
25 lines
527 B
C#
|
using Substrate.Core;
|
|||
|
|
|||
|
namespace NBTExplorer.Model
|
|||
|
{
|
|||
|
public class CubicRegionFile : RegionFile
|
|||
|
{
|
|||
|
private const int _sectorBytes = 256;
|
|||
|
private static byte[] _emptySector = new byte[_sectorBytes];
|
|||
|
|
|||
|
public CubicRegionFile (string path)
|
|||
|
: base(path)
|
|||
|
{ }
|
|||
|
|
|||
|
protected override int SectorBytes
|
|||
|
{
|
|||
|
get { return _sectorBytes; }
|
|||
|
}
|
|||
|
|
|||
|
protected override byte[] EmptySector
|
|||
|
{
|
|||
|
get { return _emptySector; }
|
|||
|
}
|
|||
|
}
|
|||
|
}
|