2020-02-17 02:44:21 +00:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace RecrownedGTK.Tools.CommandProcessor.Commands
|
|
|
|
|
{
|
2020-02-23 21:21:23 +00:00
|
|
|
|
public class ClearConsoleCommand : EngineCommand
|
2020-02-17 02:44:21 +00:00
|
|
|
|
{
|
|
|
|
|
public ClearConsoleCommand() : base("clear")
|
|
|
|
|
{
|
|
|
|
|
help = "Clears the console.";
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-24 01:51:39 +00:00
|
|
|
|
public override void Run(IUserInput userInput, IUserOutput userOutput, string[] arguments = null)
|
2020-02-17 02:44:21 +00:00
|
|
|
|
{
|
2020-02-24 01:51:39 +00:00
|
|
|
|
userOutput.ClearOutput();
|
2020-02-17 02:44:21 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|