mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-16 01:55:27 +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;
|
|||
|
}
|
|||
|
}
|