2018-12-09 14:27:31 -06:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|