namespace BinaryObjectScanner.Models.AACS
{
///
public sealed class SubsetDifference
{
///
/// The mask for u is given by the first byte. That byte is
/// treated as a number, the number of low-order 0-bits in
/// the mask. For example, the value 0x01 denotes a mask of
/// 0xFFFFFFFE; value 0x0A denotes a mask of 0xFFFFFC00.
///
public byte Mask;
///
/// The last 4 bytes are the uv number, most significant
/// byte first.
///
public uint Number;
}
}