namespace SabreTools.Data.Models.WIA
{
///
/// RVZ group entry — extends with a packed-data size field.
/// Size: 0x0C bytes.
///
public sealed class RvzGroupEntry
{
///
/// Actual byte offset of this group's data within the RVZ file.
/// (On disk this value is stored as offset >> 2.)
///
/// Big-endian
public uint DataOffset { get; set; }
///
/// Total size of this group's data (compressed + any RVZ-pack section) in bytes
///
/// Big-endian
public uint DataSize { get; set; }
///
/// Size of the RVZ-packed (junk-stripped) portion within this group's data.
/// 0 means no RVZ packing was applied.
///
/// Big-endian
public uint RvzPackedSize { get; set; }
}
}