Files
reallife-gamemode/ReallifeGamemode.Server/Util/GroupRanks.cs
2019-07-17 19:52:55 +02:00

15 lines
191 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace ReallifeGamemode.Server.Util
{
public enum GroupRank
{
NONE,
MEMBER,
MANAGER,
OWNER
}
}