aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Hid/HidControllerType.cs
blob: ea8ddfd4e6eebf7e617e2d696ab68c0aebd1b2c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)
    }
}