mirror of
https://github.com/project-redbud/FunGame-Server.git
synced 2025-04-22 12:09:36 +08:00
18 lines
432 B
C#
18 lines
432 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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";
|
|
}
|
|
}
|