Move solution and projects to src
This commit is contained in:
28
src/Ryujinx.Input/GamepadFeaturesFlag.cs
Normal file
28
src/Ryujinx.Input/GamepadFeaturesFlag.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
|
||||
namespace Ryujinx.Input
|
||||
{
|
||||
/// <summary>
|
||||
/// Represent features supported by a <see cref="IGamepad"/>.
|
||||
/// </summary>
|
||||
[Flags]
|
||||
public enum GamepadFeaturesFlag
|
||||
{
|
||||
/// <summary>
|
||||
/// No features are supported
|
||||
/// </summary>
|
||||
None,
|
||||
|
||||
/// <summary>
|
||||
/// Rumble
|
||||
/// </summary>
|
||||
/// <remarks>Also named haptic</remarks>
|
||||
Rumble,
|
||||
|
||||
/// <summary>
|
||||
/// Motion
|
||||
/// <remarks>Also named sixaxis</remarks>
|
||||
/// </summary>
|
||||
Motion
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user