mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 05:35:24 +00:00
23 lines
415 B
C#
23 lines
415 B
C#
namespace BinaryObjectScanner.Models.WAD
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/WADFile.h"/>
|
|
public sealed class Lump
|
|
{
|
|
public uint Offset;
|
|
|
|
public uint DiskLength;
|
|
|
|
public uint Length;
|
|
|
|
public byte Type;
|
|
|
|
public byte Compression;
|
|
|
|
public byte Padding0;
|
|
|
|
public byte Padding1;
|
|
|
|
public string Name;
|
|
}
|
|
}
|