Add AdminLevel.cs, ClientExtention.cs

This commit is contained in:
hydrant
2018-09-19 12:26:35 +02:00
parent 26bfaacd67
commit 91e2fbe4ec
2 changed files with 33 additions and 0 deletions

13
Server/Util/AdminLevel.cs Normal file
View File

@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace reallife_gamemode.Server.Util
{
public enum AdminLevel : int
{
PLAYER,
SUPPORTER,
ADMIN
}
}