mirror of
https://github.com/Stone-Red-Code/RemSox.git
synced 2026-09-04 00:56:19 +02:00
15 lines
297 B
C#
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();
|
|
}
|
|
} |