mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 05:35:15 +00:00
11 lines
338 B
C#
11 lines
338 B
C#
namespace BinaryObjectScanner.Models.Compression.Quantum
|
|
{
|
|
/// <see href="https://github.com/wine-mirror/wine/blob/master/dlls/cabinet/cabinet.h"/>
|
|
/// <see href="http://www.russotto.net/quantumcomp.html"/>
|
|
public sealed class ModelSymbol
|
|
{
|
|
public ushort Symbol;
|
|
|
|
public ushort CumulativeFrequency;
|
|
}
|
|
} |