Initial commit

This commit is contained in:
Stone_Red
2026-06-08 12:30:37 +02:00
commit 2ba87a113d
310 changed files with 4457 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
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();
}
}