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