mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-29 07:40:46 -07:00
11 lines
263 B
C#
11 lines
263 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Aud.AudioRenderer
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Size = 0x10, Pack = 4)]
|
|
internal struct BehaviorIn
|
|
{
|
|
public long Unknown0;
|
|
public long Unknown8;
|
|
}
|
|
} |