mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 13:45:25 +00:00
16 lines
357 B
C#
16 lines
357 B
C#
namespace BinaryObjectScanner.Models.BSP
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/BSPFile.h"/>
|
|
public sealed class Lump
|
|
{
|
|
/// <summary>
|
|
/// Offset
|
|
/// </summary>
|
|
public uint Offset;
|
|
|
|
/// <summary>
|
|
/// Length
|
|
/// </summary>
|
|
public uint Length;
|
|
}
|
|
} |