mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 07:37:10 +00:00
25 lines
581 B
C#
25 lines
581 B
C#
namespace SabreTools.Models.VBSP
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/VBSPFile.h"/>
|
|
public sealed class Lump
|
|
{
|
|
public uint Offset { get; set; }
|
|
|
|
public uint Length { get; set; }
|
|
|
|
/// <summary>
|
|
/// Default to zero.
|
|
/// </summary>
|
|
public uint Version { get; set; }
|
|
|
|
/// <summary>
|
|
/// Default to (char)0, (char)0, (char)0, (char)0.
|
|
/// </summary>
|
|
#if NET48
|
|
public char[] FourCC { get; set; }
|
|
#else
|
|
public char[]? FourCC { get; set; }
|
|
#endif
|
|
}
|
|
}
|