using System;
namespace Ryujinx.Input
{
///
/// Represent features supported by a .
///
[Flags]
public enum GamepadFeaturesFlag
{
///
/// No features are supported
///
None,
///
/// Rumble
///
/// Also named haptic
Rumble,
///
/// Motion
/// Also named sixaxis
///
Motion,
///
/// The LED on the back of modern PlayStation controllers (DualSense & DualShock 4).
///
Led,
}
}