public RegionDataHeader(RegionDataType Type, RegionDataFlags Flags, Byte Priority, Byte[] Unused) { this.Type = Type; this.Flags = Flags; this.Priority = Priority; this.Unused = Unused; }
public RegionDataHeader(string Tag = null) : base(Tag) { Type = new RegionDataType(); Flags = new RegionDataFlags(); Priority = new Byte(); Unused = new byte[2]; }