Files
RemSox/UI/CLI/Commands/ClearCommand.cs
T
2026-06-08 12:30:37 +02:00

15 lines
271 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)
{
Console.Clear();
}
}