Files
2025-07-06 00:23:46 +02:00

21 lines
293 B
C#

using System;
namespace NitroxModel.DataStructures.GameLogic
{
public enum Perms : byte
{
NONE,
PLAYER,
MODERATOR,
ADMIN,
CONSOLE
}
[Flags]
public enum PermsFlag : byte
{
NONE = 0x0,
NO_CONSOLE = 0x1
}
}