mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-06 16:03:05 +00:00
9 lines
168 B
C#
9 lines
168 B
C#
namespace Ryujinx.Audio.ADPCM
|
|
{
|
|
struct Info
|
|
{
|
|
public short History1;
|
|
public short History2;
|
|
public short[] Coefficients;
|
|
}
|
|
}
|