namespace BurnOutSharp.Compression.MSZIP
{
public class HuffmanNode
{
///
/// Number of extra bits or operation
///
public byte ExtraBits;
///
/// Number of bits in this code or subcode
///
public byte BitLength;
#region v
///
/// Literal, length base, or distance base
///
public ushort Base;
///
/// Pointer to next level of table
///
public HuffmanNode[] NextLevel;
#endregion
}
}