Files
OldThink/Content.Client/Commands/CreditsCommand.cs

22 lines
592 B
C#
Raw Normal View History

2021-06-09 22:19:39 +02:00
using Content.Client.Credits;
2020-06-14 15:15:07 +02:00
using Content.Client.UserInterface;
using Content.Shared.Administration;
2020-06-14 15:15:07 +02:00
using JetBrains.Annotations;
using Robust.Shared.Console;
2020-06-14 15:15:07 +02:00
namespace Content.Client.Commands
{
[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";
public void Execute(IConsoleShell shell, string argStr, string[] args)
2020-06-14 15:15:07 +02:00
{
new CreditsWindow().Open();
}
}
}