21 lines
476 B
C#
21 lines
476 B
C#
using reallife_gamemode.Server.Util;
|
|
using static reallife_gamemode.Server.Util.AdminLevel;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace reallife_gamemode.Server.Extensions
|
|
{
|
|
public static class AdminLevelExtension
|
|
{
|
|
public static string ToString(this AdminLevel level)
|
|
{
|
|
switch(level)
|
|
{
|
|
case SUPPORTER:
|
|
return "Supporter";
|
|
}
|
|
}
|
|
}
|
|
}
|