Files
OldThink/Content.Client/Commands/CreditsCommand.cs

20 lines
544 B
C#
Raw Normal View History

2021-06-09 22:19:39 +02:00
using Content.Client.Credits;
using Content.Shared.Administration;
2020-06-14 15:15:07 +02:00
using JetBrains.Annotations;
using Robust.Shared.Console;
2020-06-14 15:15:07 +02:00
namespace Content.Client.Commands;
[UsedImplicitly, AnyCommand]
public sealed class CreditsCommand : LocalizedCommands
2020-06-14 15:15:07 +02:00
{
public override string Command => "credits";
2020-06-14 15:15:07 +02:00
public override string Help => LocalizationManager.GetString($"cmd-{Command}-help", ("command", Command));
public override void Execute(IConsoleShell shell, string argStr, string[] args)
{
new CreditsWindow().Open();
2020-06-14 15:15:07 +02:00
}
}