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
@@ -41,7 +41,7 @@ public class Kernel : Sys.Kernel
for (int i = 0; i < 5; i++)
{
ProcessManager.SpawnProcess<TestProcess>();
//ProcessManager.SpawnProcess<TestProcess>();
}
Console.WriteLine(CosmosFeatures.MouseEnabled);
@@ -66,7 +66,7 @@ public class Kernel : Sys.Kernel
return;
}
if (CommandManager.TryExecute(input))
if (CommandManager.TryExecute(input, line => Console.WriteLine(line)))
{
return;
}