Files
tbd-station-14/Content.Client/Commands/CreditsCommand.cs
Pieter-Jan Briers 422f64fed0 Credits
2020-06-14 15:15:15 +02:00

21 lines
544 B
C#

using Content.Client.UserInterface;
using JetBrains.Annotations;
using Robust.Client.Interfaces.Console;
namespace Content.Client.Commands
{
[UsedImplicitly]
public sealed class CreditsCommand : IConsoleCommand
{
public string Command => "credits";
public string Description => "Opens the credits window";
public string Help => "credits";
public bool Execute(IDebugConsole console, params string[] args)
{
new CreditsWindow().Open();
return false;
}
}
}