mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-02-24 14:14:25 +01:00
34 lines
732 B
C#
34 lines
732 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,
|
|
|
|
/// <summary>
|
|
/// The LED on the back of modern PlayStation controllers (DualSense & DualShock 4).
|
|
/// </summary>
|
|
Led,
|
|
}
|
|
}
|