Files

13 lines
368 B
C#
Raw Permalink Normal View History

2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.WAD3
2025-09-26 10:57:15 -04:00
{
/// <see href="https://twhl.info/wiki/page/Specification:_WAD3"/>
public sealed class MipMap
{
/// <summary>
/// Raw image data. Each byte points to an index in the palette
/// </summary>
/// <remarks>[width][height]</remarks>
public byte[][] Data { get; set; } = [];
2025-09-26 10:57:15 -04:00
}
}