first commit
This commit is contained in:
20
NitroxModel/DataStructures/GameLogic/Perms.cs
Normal file
20
NitroxModel/DataStructures/GameLogic/Perms.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
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
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user