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 } }