blob: 801d117cbbc46966eeb7b02780ecc19edb35cefb (
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 GyroscopeOffset
{
public ushort X;
public ushort Y;
public ushort Z;
}
}
|