blob: 7812281f896cbe3818a193b6499fc38cf8f42bdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
using System.Runtime.InteropServices;
namespace Ryujinx.Horizon.Sdk.Settings.Factory
{
[StructLayout(LayoutKind.Sequential, Size = 0x6, Pack = 0x2)]
struct GyroscopeScale
{
public ushort X;
public ushort Y;
public ushort Z;
}
}
|