Files
tbd-station-14/Content.Client/Commands/CreditsCommand.cs
2021-12-25 19:53:21 +01:00

22 lines
592 B
C#

using Content.Client.Credits;
using Content.Client.UserInterface;
using Content.Shared.Administration;
using JetBrains.Annotations;
using Robust.Shared.Console;
namespace Content.Client.Commands
{
[UsedImplicitly, AnyCommand]
public sealed class CreditsCommand : IConsoleCommand
{
public string Command => "credits";
public string Description => "Opens the credits window";
public string Help => "credits";
public void Execute(IConsoleShell shell, string argStr, string[] args)
{
new CreditsWindow().Open();
}
}
}