mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 21:29:18 +00:00
13 lines
289 B
C#
13 lines
289 B
C#
namespace BinaryObjectScanner.Models.WAD
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/WADFile.h"/>
|
|
public sealed class Header
|
|
{
|
|
public string Signature;
|
|
|
|
public uint LumpCount;
|
|
|
|
public uint LumpOffset;
|
|
}
|
|
}
|