mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-23 23:25:35 +00:00
19 lines
429 B
C#
19 lines
429 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.Models.BSP
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/BSPFile.h"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public sealed class Lump
|
|
{
|
|
/// <summary>
|
|
/// Offset
|
|
/// </summary>
|
|
public uint Offset;
|
|
|
|
/// <summary>
|
|
/// Length
|
|
/// </summary>
|
|
public uint Length;
|
|
}
|
|
} |