14 lines
209 B
C#
14 lines
209 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace reallife_gamemode.Server.Util
|
|
{
|
|
public enum AdminLevel : int
|
|
{
|
|
PLAYER,
|
|
SUPPORTER,
|
|
ADMIN
|
|
}
|
|
}
|