mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-08 05:02:32 -07:00
14 lines
208 B
C#
14 lines
208 B
C#
using System;
|
|
|
|
namespace Ryujinx.Horizon.Sdk.Hid
|
|
{
|
|
[Flags]
|
|
enum PalmaFeature
|
|
{
|
|
FrMode = 1 << 0,
|
|
RumbleFeedback = 1 << 1,
|
|
Step = 1 << 2,
|
|
MuteSwitch = 1 << 3
|
|
}
|
|
}
|