Show CPU core count in CLI and add window creation helper methods

This commit is contained in:
Stone_Red
2026-06-12 02:48:52 +02:00
parent 5a7b1d1f97
commit a47656320a
4 changed files with 16 additions and 3 deletions
+1
View File
@@ -18,6 +18,7 @@ internal class CliProcess() : Process("Cli")
Console.Clear();
Console.WriteLine("Welcome RemSox!");
Console.WriteLine("Type 'help' to see available commands.");
Console.WriteLine(Environment.ProcessorCount + " CPU cores detected");
Console.Write("> ");
historyIndex = CommandManager.GetCommandHistory().Count;
+1 -1
View File
@@ -24,7 +24,7 @@ public class TerminalProcess() : Process("Terminal")
internal override void Start(string[] args)
{
window = WindowManager.CreateWindow(this, "Terminal", new Size(400, 300));
window = CreateWindow("Terminal", new Size(400, 300), new Point(100, 100));
PrintLine("RemSox GUI Terminal v1.0");
PrintLine("Type 'help' for commands.");