mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 10:28:38 +00:00
20 lines
489 B
C#
20 lines
489 B
C#
|
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;
|
|||
|
}
|
|||
|
}
|