2021-06-09 22:19:39 +02:00
|
|
|
using Content.Client.Credits;
|
2020-06-14 15:15:07 +02:00
|
|
|
using Content.Client.UserInterface;
|
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
|
|
|
|
|
|
|
|
namespace Content.Client.Commands
|
|
|
|
|
{
|
2021-12-25 19:53:21 +01:00
|
|
|
[UsedImplicitly, AnyCommand]
|
2020-06-14 15:15:07 +02:00
|
|
|
public sealed class CreditsCommand : IConsoleCommand
|
|
|
|
|
{
|
|
|
|
|
public string Command => "credits";
|
|
|
|
|
public string Description => "Opens the credits window";
|
|
|
|
|
public string Help => "credits";
|
|
|
|
|
|
2021-02-01 16:49:43 -08:00
|
|
|
public void Execute(IConsoleShell shell, string argStr, string[] args)
|
2020-06-14 15:15:07 +02:00
|
|
|
{
|
|
|
|
|
new CreditsWindow().Open();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|