Files
SabreTools.Models/WAD/Header.cs

13 lines
320 B
C#
Raw Permalink Normal View History

2023-09-04 00:12:49 -04:00
namespace SabreTools.Models.WAD
2023-09-04 00:11:04 -04:00
{
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/WADFile.h"/>
public sealed class Header
{
2023-09-10 21:24:10 -04:00
public string? Signature { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint LumpCount { get; set; }
2023-09-04 00:11:04 -04:00
2023-09-10 21:24:10 -04:00
public uint LumpOffset { get; set; }
2023-09-04 00:11:04 -04:00
}
}