using System; namespace RecrownedGTK.Tools.CommandProcessor.Commands { public class ClearConsoleCommand : EngineCommand { public ClearConsoleCommand() : base("clear") { help = "Clears the console."; } public override void Run(string[] arguments = null) { Console.Clear(); } } }