Files
SabreTools.Models/WAD/Lump.cs
2023-11-07 20:57:05 -05:00

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; }
}
}