aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/Nfc/Nfp/Device.cs
blob: a1f58dae1c379cda7c42bf421f9628b7374d8805 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using Ryujinx.HLE.HOS.Kernel.Threading;
using Ryujinx.HLE.HOS.Services.Hid;
using Ryujinx.HLE.Input;

namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp
{
    class Device
    {
        public KEvent ActivateEvent;
        public int    ActivateEventHandle;

        public KEvent DeactivateEvent;
        public int    DeactivateEventHandle;

        public DeviceState State = DeviceState.Unavailable;

        public HidControllerId Handle;
        public NpadIdType      NpadIdType;
    }
}