mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-10-02 16:50:20 -07:00
29 lines
564 B
C#
29 lines
564 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,
|
|
}
|
|
}
|