2018-03-03 01:49:17 +00:00
|
|
|
using System;
|
|
|
|
|
2018-06-11 00:46:42 +00:00
|
|
|
namespace Ryujinx.HLE.Input
|
2018-03-03 01:49:17 +00:00
|
|
|
{
|
|
|
|
[Flags]
|
|
|
|
public enum HidControllerType
|
|
|
|
{
|
|
|
|
ControllerType_ProController = (1 << 0),
|
|
|
|
ControllerType_Handheld = (1 << 1),
|
|
|
|
ControllerType_JoyconPair = (1 << 2),
|
|
|
|
ControllerType_JoyconLeft = (1 << 3),
|
|
|
|
ControllerType_JoyconRight = (1 << 4)
|
|
|
|
}
|
|
|
|
}
|