From cee712105850ac3385cd0091a923438167433f9f Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Sat, 8 Apr 2023 01:22:00 +0200 Subject: Move solution and projects to src --- src/Ryujinx.Input/MotionInputId.cs | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/Ryujinx.Input/MotionInputId.cs (limited to 'src/Ryujinx.Input/MotionInputId.cs') diff --git a/src/Ryujinx.Input/MotionInputId.cs b/src/Ryujinx.Input/MotionInputId.cs new file mode 100644 index 00000000..3176a987 --- /dev/null +++ b/src/Ryujinx.Input/MotionInputId.cs @@ -0,0 +1,25 @@ +namespace Ryujinx.Input +{ + /// + /// Represent a motion sensor on a gamepad. + /// + public enum MotionInputId : byte + { + /// + /// Invalid. + /// + Invalid, + + /// + /// Accelerometer. + /// + /// Values are in m/s^2 + Accelerometer, + + /// + /// Gyroscope. + /// + /// Values are in degrees + Gyroscope + } +} -- cgit v1.2.3