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