recrownedgtk/RecrownedGTK.Tools/CommandProcessor/Commands/ClearConsoleCommand.cs

18 lines
369 B
C#
Raw Normal View History

2020-02-17 02:44:21 +00:00
using System;
namespace RecrownedGTK.Tools.CommandProcessor.Commands
{
internal class ClearConsoleCommand : EngineCommand
{
public ClearConsoleCommand() : base("clear")
{
help = "Clears the console.";
}
public override void Run(string[] arguments = null)
{
Console.Clear();
}
}
}