mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 23:57:18 +00:00
23 lines
522 B
C#
23 lines
522 B
C#
namespace SabreTools.Models.WAD
|
|
{
|
|
/// <see href="https://github.com/RavuAlHemio/hllib/blob/master/HLLib/WADFile.h"/>
|
|
public sealed class LumpInfo
|
|
{
|
|
public string? Name { get; set; }
|
|
|
|
public uint Width { get; set; }
|
|
|
|
public uint Height { get; set; }
|
|
|
|
public uint PixelOffset { get; set; }
|
|
|
|
// 12 bytes of unknown data
|
|
|
|
public byte[]? PixelData { get; set; }
|
|
|
|
public uint PaletteSize { get; set; }
|
|
|
|
public byte[]? PaletteData { get; set; }
|
|
}
|
|
}
|