namespace BinaryObjectScanner.Models.VBSP { /// public sealed class Header { /// /// BSP file signature. /// public string Signature; /// /// BSP file version. /// /// /// 19-20: Source /// 21: Source - The lump version property was moved to the start of the struct. /// 0x00040014: Dark Messiah - Looks like the 32 bit version has been split into two 16 bit fields. /// public int Version; /// /// Lumps. /// public Lump[] Lumps; /// /// The map's revision (iteration, version) number. /// public int MapRevision; } }