mirror of
https://github.com/project-redbud/FunGame-Server.git
synced 2026-04-20 05:25:00 +00:00
19 lines
638 B
C#
19 lines
638 B
C#
namespace Milimoe.FunGame.Server.Others
|
|
{
|
|
public class OrderDictionary
|
|
{
|
|
public const string Help = "help";
|
|
public const string Quit = "quit";
|
|
public const string Exit = "exit";
|
|
public const string Close = "close";
|
|
public const string Restart = "restart";
|
|
public const string Ban = "ban";
|
|
public const string Kick = "kick";
|
|
public const string Logout = "logout";
|
|
public const string Show = "show";
|
|
public const string ShowClients = "clients";
|
|
public const string ShowUsers = "users";
|
|
public const string Reload = "reload";
|
|
}
|
|
}
|