| 12345678910111213141516171819 |
- 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();
- }
- }
|