mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-16 13:55:29 +00:00
20 lines
410 B
C#
20 lines
410 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.Models.VBSP
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/VBSPFile.h"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public sealed class LumpHeader
|
|
{
|
|
public int LumpOffset;
|
|
|
|
public int LumpID;
|
|
|
|
public int LumpVersion;
|
|
|
|
public int LumpLength;
|
|
|
|
public int MapRevision;
|
|
}
|
|
}
|