mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-12 13:45:35 +00:00
17 lines
331 B
C#
17 lines
331 B
C#
namespace BurnOutSharp.Models.VBSP
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/VBSPFile.h"/>
|
|
public sealed class LumpHeader
|
|
{
|
|
public int LumpOffset;
|
|
|
|
public int LumpID;
|
|
|
|
public int LumpVersion;
|
|
|
|
public int LumpLength;
|
|
|
|
public int MapRevision;
|
|
}
|
|
}
|