namespace BinaryObjectScanner.Models.VBSP
{
public static class Constants
{
public static readonly byte[] SignatureBytes = new byte[] { 0x56, 0x42, 0x53, 0x50 };
public const string SignatureString = "VBSP";
public const uint SignatureUInt32 = 0x50534256;
///
/// Total number of lumps in the package
///
public const int HL_VBSP_LUMP_COUNT = 64;
///
/// Index for the entities lump
///
public const int HL_VBSP_LUMP_ENTITIES = 0;
///
/// Index for the pakfile lump
///
public const int HL_VBSP_LUMP_PAKFILE = 40;
}
}