diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Nfc/Nfp/DeviceState.cs')
-rw-r--r-- | Ryujinx.HLE/HOS/Services/Nfc/Nfp/DeviceState.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Nfc/Nfp/DeviceState.cs b/Ryujinx.HLE/HOS/Services/Nfc/Nfp/DeviceState.cs new file mode 100644 index 00000000..09cff5f8 --- /dev/null +++ b/Ryujinx.HLE/HOS/Services/Nfc/Nfp/DeviceState.cs @@ -0,0 +1,13 @@ +namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp +{ + enum DeviceState + { + Initialized = 0, + SearchingForTag = 1, + TagFound = 2, + TagRemoved = 3, + TagMounted = 4, + Unavailable = 5, + Finalized = 6 + } +}
\ No newline at end of file |