Ryujinx/Ryujinx.Horizon/Prepo/Types/PrepoServicePermissionLevel.cs

11 lines
223 B
C#
Raw Normal View History

namespace Ryujinx.Horizon.Prepo.Types
{
enum PrepoServicePermissionLevel
{
Admin = -1,
User = 1,
System = 2,
Manager = 6,
Debug = unchecked((int)0x80000006)
}
}