This commit is contained in:
Pieter-Jan Briers
2020-06-14 15:15:07 +02:00
parent 79ad5fd09e
commit 422f64fed0
14 changed files with 301 additions and 5 deletions

View File

@@ -0,0 +1,20 @@
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;
}
}
}