mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-18 00:16:56 +00:00
2989c163a8
* editorconfig: Add default charset * Change file encoding from UTF-8-BOM to UTF-8
28 lines
564 B
C#
28 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,
|
|
}
|
|
}
|