mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-29 05:57:43 +02:00
14 lines
No EOL
348 B
C#
14 lines
No EOL
348 B
C#
using System;
|
|
|
|
namespace Ryujinx.HLE.Input
|
|
{
|
|
[Flags]
|
|
public enum HidControllerType
|
|
{
|
|
ControllerType_ProController = (1 << 0),
|
|
ControllerType_Handheld = (1 << 1),
|
|
ControllerType_JoyconPair = (1 << 2),
|
|
ControllerType_JoyconLeft = (1 << 3),
|
|
ControllerType_JoyconRight = (1 << 4)
|
|
}
|
|
} |