namespace BinaryObjectScanner.Models.PlayJ
{
///
/// Data referred to by or
///
public sealed class UnknownBlock1
{
///
/// Length of the following data block
///
public uint Length;
///
/// Unknown data
///
public byte[] Data;
// Notes about Data:
// - Might be UInt16 offset and UInt16 length pairs
// - Might be relevant to ad data
// - Might be relevant to encryption
// - Highly repeating patterns in the values with only a few differences
}
}