recrownedathenaeum/RecrownedAthenaeum.Tools/CommandProcessor/Commands/ClearConsoleCommand.cs

18 lines
375 B
C#
Raw Normal View History

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