First round of cleanup for DolphinLib additions

This commit is contained in:
Matt Nadareski
2026-05-12 20:33:53 -04:00
parent 49aa6895b6
commit 2a0e8e2eb0
53 changed files with 3861 additions and 2586 deletions

View File

@@ -17,10 +17,10 @@ namespace SabreTools.Data.Models.GCZ
/// Each value encodes both the offset of the block within the compressed data section
/// and a compression flag in the top bit:
/// <list type="bullet">
/// <item>Top bit CLEAR block is zlib/deflate-compressed at that offset.</item>
/// <item>Top bit SET block is stored uncompressed at that offset.</item>
/// <item>Top bit CLEAR -> block is zlib/deflate-compressed at that offset.</item>
/// <item>Top bit SET -> block is stored uncompressed at that offset.</item>
/// </list>
/// Offset is <c>value &amp; ~UncompressedFlag</c>.
/// Offset is value &amp; ~UncompressedFlag.
/// </summary>
public ulong[] BlockPointers { get; set; } = [];