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