mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 13:18:40 +00:00
13 lines
284 B
C#
13 lines
284 B
C#
|
namespace Ryujinx.HLE.HOS.Services.Nfc.Nfp
|
|||
|
{
|
|||
|
enum DeviceState
|
|||
|
{
|
|||
|
Initialized = 0,
|
|||
|
SearchingForTag = 1,
|
|||
|
TagFound = 2,
|
|||
|
TagRemoved = 3,
|
|||
|
TagMounted = 4,
|
|||
|
Unavailable = 5,
|
|||
|
Finalized = 6
|
|||
|
}
|
|||
|
}
|