18 lines
375 B
C#
18 lines
375 B
C#
using System;
|
|
|
|
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();
|
|
}
|
|
}
|
|
}
|