mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-08-27 07:04:57 +01:00
32 lines
512 B
C#
32 lines
512 B
C#
using System.Collections.Generic;
|
|
|
|
namespace TGS.Server.ChatCommands
|
|
{
|
|
/// <summary>
|
|
/// kek
|
|
/// </summary>
|
|
sealed class KekCommand : ChatCommand
|
|
{
|
|
/// <summary>
|
|
/// Construct a <see cref="KekCommand"/>
|
|
/// </summary>
|
|
public KekCommand()
|
|
{
|
|
Keyword = "kek";
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override ExitCode Run(IList<string> parameters)
|
|
{
|
|
OutputProc("kek");
|
|
return ExitCode.Normal;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public override string GetHelpText()
|
|
{
|
|
return "kek";
|
|
}
|
|
}
|
|
}
|