mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-19 13:30:18 +00:00
14 lines
319 B
C#
14 lines
319 B
C#
using Ryujinx.Horizon.Sdk.Hid.Npad;
|
|
using System.Numerics;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Hid
|
|
{
|
|
public struct SixAxisInput
|
|
{
|
|
public PlayerIndex PlayerId;
|
|
public Vector3 Accelerometer;
|
|
public Vector3 Gyroscope;
|
|
public Vector3 Rotation;
|
|
public float[] Orientation;
|
|
}
|
|
}
|