mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-24 09:42:16 +00:00
17 lines
337 B
C#
17 lines
337 B
C#
namespace SabreTools.Models.WAD
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/WADFile.h"/>
|
|
public sealed class Header
|
|
{
|
|
#if NET48
|
|
public string Signature;
|
|
#else
|
|
public string? Signature;
|
|
#endif
|
|
|
|
public uint LumpCount;
|
|
|
|
public uint LumpOffset;
|
|
}
|
|
}
|