mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-12-22 06:45:55 +01:00
29 lines
566 B
C#
29 lines
566 B
C#
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
|
|
}
|
|
}
|