18 lines
375 B
C#
Raw Normal View History

2018-12-09 14:27:31 -06:00
using System;
namespace RecrownedAthenaeum.Tools.CommandProcessor.Commands
{
internal class ClearConsoleCommand : EngineCommand
{
public ClearConsoleCommand() : base("clear")
{
2018-12-28 18:52:52 -06:00
help = "Clears the console.";
2018-12-09 14:27:31 -06:00
}
public override void Run(string[] arguments = null)
{
Console.Clear();
}
}
}