recrownedgtk/RecrownedAthenaeum.Tools/CommandProcessor/Commands/ClearConsoleCommand.cs
2019-01-13 14:07:57 -06:00

20 lines
428 B
C#

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