using System.Collections.Generic; namespace TGS.Server.ChatCommands { /// /// kek /// sealed class KekCommand : ChatCommand { /// /// Construct a /// public KekCommand() { Keyword = "kek"; } /// protected override ExitCode Run(IList parameters) { OutputProc("kek"); return ExitCode.Normal; } /// public override string GetHelpText() { return "kek"; } } }