0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-20 08:21:40 +00:00
ryujinx-fork/Ryujinx.HLE/HOS/Services/Nifm/StaticService/Types/InternetConnectionState.cs

12 lines
264 B
C#
Raw Normal View History

namespace Ryujinx.HLE.HOS.Services.Nifm.StaticService.Types
{
enum InternetConnectionState : byte
{
ConnectingType0 = 0,
ConnectingType1 = 1,
ConnectingType2 = 2,
ConnectingType3 = 3,
Connected = 4,
}
}