mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-23 01:02:14 +00:00
17 lines
389 B
C#
17 lines
389 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 { get; set; }
|
|
#else
|
|
public string? Signature { get; set; }
|
|
#endif
|
|
|
|
public uint LumpCount { get; set; }
|
|
|
|
public uint LumpOffset { get; set; }
|
|
}
|
|
}
|