mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-07-22 08:42:13 +00:00
13 lines
320 B
C#
13 lines
320 B
C#
namespace SabreTools.Models.WAD
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/WADFile.h"/>
|
|
public sealed class Header
|
|
{
|
|
public string? Signature { get; set; }
|
|
|
|
public uint LumpCount { get; set; }
|
|
|
|
public uint LumpOffset { get; set; }
|
|
}
|
|
}
|