namespace SabreTools.Models.VBSP
{
///
public sealed class Header
{
///
/// BSP file signature.
///
#if NET48
public string Signature { get; set; }
#else
public string? Signature { get; set; }
#endif
///
/// 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 { get; set; }
///
/// Lumps.
///
#if NET48
public Lump[] Lumps { get; set; }
#else
public Lump?[]? Lumps { get; set; }
#endif
///
/// The map's revision (iteration, version) number.
///
public int MapRevision { get; set; }
}
}