Files
RemSox/UI/CLI/Commands/ClearCommand.cs
T

15 lines
297 B
C#

using System;
namespace RemSox.UI.GUI.CLI.Commands;
public sealed class ClearCommand : ICommand
{
public string Name => "clear";
public string Description => "Clear the screen";
public void Execute(string? arguments, Action<string> printLine)
{
Console.Clear();
}
}