mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-11-05 08:09:00 -06:00
Move solution and projects to src
This commit is contained in:
25
src/Ryujinx.Input/MotionInputId.cs
Normal file
25
src/Ryujinx.Input/MotionInputId.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
namespace Ryujinx.Input
|
||||
{
|
||||
/// <summary>
|
||||
/// Represent a motion sensor on a gamepad.
|
||||
/// </summary>
|
||||
public enum MotionInputId : byte
|
||||
{
|
||||
/// <summary>
|
||||
/// Invalid.
|
||||
/// </summary>
|
||||
Invalid,
|
||||
|
||||
/// <summary>
|
||||
/// Accelerometer.
|
||||
/// </summary>
|
||||
/// <remarks>Values are in m/s^2</remarks>
|
||||
Accelerometer,
|
||||
|
||||
/// <summary>
|
||||
/// Gyroscope.
|
||||
/// </summary>
|
||||
/// <remarks>Values are in degrees</remarks>
|
||||
Gyroscope
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user