namespace SabreTools.Data.Models.WAD3 { /// public sealed class MipMap { /// /// Raw image data. Each byte points to an index in the palette /// /// [width][height] public byte[][] Data { get; set; } = []; } }