22 lines
363 B
C#
22 lines
363 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 reallife_gamemode.Server.Util
|
|
{
|
|
public enum AdminLevel : int
|
|
{
|
|
|
|
|
|
PLAYER,
|
|
SUPPORTER,
|
|
ADMIN
|
|
}
|
|
}
|