mirror of
https://github.com/SabreTools/SabreTools.IO.git
synced 2026-09-22 06:36:01 +00:00
19 lines
418 B
C#
19 lines
418 B
C#
namespace SabreTools.IO.Compression.RVZPack
|
|
{
|
|
/// <summary>
|
|
/// Junk region information for recreation
|
|
/// </summary>
|
|
internal struct JunkRegion
|
|
{
|
|
/// <summary>
|
|
/// Starting offset of the junk region
|
|
/// </summary>
|
|
public long StartOffset;
|
|
|
|
/// <summary>
|
|
/// Seed used to recreate the junk
|
|
/// </summary>
|
|
public uint[]? Seed;
|
|
}
|
|
}
|