Files
reallife-gamemode/ReallifeGamemode.Database/AdminLevel.cs
2020-01-12 01:21:06 +01:00

26 lines
462 B
C#

using System;
using System.Collections.Generic;
using System.Text;
/**
* @overview Life of German Reallife - Admin Levels (AdminLevel.cs)
* @author VegaZ, hydrant
* @copyright (c) 2008 - 2018 Life of German
*/
namespace ReallifeGamemode.Database
{
public enum AdminLevel : int
{
PLAYER = 0,
MAPPING = 1,
ENTWICKLUNG = 2,
SUPPORTER = 3,
ADMIN = 4,
ADMIN2 = 5,
ADMIN3 = 6,
HEADADMIN = 1337,
PROJEKTLEITUNG = 1338
}
}