Add printLine support for commands and implement basic UI controls rendering

This commit is contained in:
Stone_Red
2026-06-08 19:51:22 +02:00
parent fc71af028f
commit 8b900c9d58
14 changed files with 178 additions and 29 deletions
+2 -2
View File
@@ -10,9 +10,9 @@ public class StartGuiCommand : ICommand
public string Name => "start-gui";
public string Description => "Starts the Graphical User Interface (Desktop Process)";
public void Execute(string? args)
public void Execute(string? arguments, Action<string> printLine)
{
Console.WriteLine("Starting Desktop Process...");
printLine("Starting Desktop Process...");
ProcessManager.SpawnProcess<DesktopProcess>();
}
}