20 lines
544 B
C#
20 lines
544 B
C#
using Content.Client.Credits;
|
|
using Content.Shared.Administration;
|
|
using JetBrains.Annotations;
|
|
using Robust.Shared.Console;
|
|
|
|
namespace Content.Client.Commands;
|
|
|
|
[UsedImplicitly, AnyCommand]
|
|
public sealed class CreditsCommand : LocalizedCommands
|
|
{
|
|
public override string Command => "credits";
|
|
|
|
public override string Help => LocalizationManager.GetString($"cmd-{Command}-help", ("command", Command));
|
|
|
|
public override void Execute(IConsoleShell shell, string argStr, string[] args)
|
|
{
|
|
new CreditsWindow().Open();
|
|
}
|
|
}
|