2021-06-09 22:19:39 +02:00
|
|
|
using Content.Client.Credits;
|
2021-12-25 19:53:21 +01:00
|
|
|
using Content.Shared.Administration;
|
2020-06-14 15:15:07 +02:00
|
|
|
using JetBrains.Annotations;
|
2021-02-01 16:49:43 -08:00
|
|
|
using Robust.Shared.Console;
|
2020-06-14 15:15:07 +02:00
|
|
|
|
2024-01-03 23:29:37 +01:00
|
|
|
namespace Content.Client.Commands;
|
|
|
|
|
|
|
|
|
|
[UsedImplicitly, AnyCommand]
|
|
|
|
|
public sealed class CreditsCommand : LocalizedCommands
|
2020-06-14 15:15:07 +02:00
|
|
|
{
|
2024-01-03 23:29:37 +01:00
|
|
|
public override string Command => "credits";
|
2020-06-14 15:15:07 +02:00
|
|
|
|
2024-01-03 23:29:37 +01: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
|
|
|
}
|
|
|
|
|
}
|