2025-09-26 13:06:18 -04:00
|
|
|
namespace SabreTools.Data.Models.LZ
|
2025-09-26 10:57:15 -04:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// LZ variant with variable compression
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <see href="https://www.cabextract.org.uk/libmspack/doc/szdd_kwaj_format.html"/>
|
|
|
|
|
public sealed class KWAJFile
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Header
|
|
|
|
|
/// </summary>
|
2025-10-31 13:59:28 -04:00
|
|
|
public KWAJHeader Header { get; set; } = new();
|
2025-09-26 10:57:15 -04:00
|
|
|
|
|
|
|
|
/// <summary>
|
2025-10-30 22:03:22 -04:00
|
|
|
/// Optional extensions defined by <see cref="KWAJHeader.HeaderFlags"/>
|
2025-09-26 10:57:15 -04:00
|
|
|
/// </summary>
|
2025-10-31 13:59:28 -04:00
|
|
|
public KWAJHeaderExtensions? HeaderExtensions { get; set; }
|
2025-09-26 10:57:15 -04:00
|
|
|
|
|
|
|
|
// Followed immediately by compressed data
|
|
|
|
|
}
|
2025-10-30 22:03:22 -04:00
|
|
|
}
|