GG EZ, ima go piss

This commit is contained in:
2025-07-08 04:29:21 +03:00
parent fd78d9283e
commit e3dc8d9d42
31 changed files with 441 additions and 0 deletions

8
TermEngine/ICOmmand.cs Normal file
View File

@@ -0,0 +1,8 @@
public interface ICommand
{
string Name { get; }
string Description { get; }
void Execute(string[] args);
}