mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-11 21:29:18 +00:00
12 lines
342 B
C#
12 lines
342 B
C#
namespace BinaryObjectScanner.Compression.ADPCM
|
|
{
|
|
/// <see href="https://github.com/ladislav-zezula/StormLib/blob/master/src/adpcm/adpcm.cpp"/>
|
|
public unsafe struct ADPCM_DATA
|
|
{
|
|
public uint[] pValues;
|
|
public int BitCount;
|
|
public int field_8;
|
|
public int field_C;
|
|
public int field_10;
|
|
}
|
|
} |