Code cleanup

This commit is contained in:
Stone_Red
2026-06-10 03:22:45 +02:00
parent f6e03c052e
commit 3a635e85df
6 changed files with 11 additions and 23 deletions
+2
View File
@@ -54,7 +54,9 @@ internal class CliProcess() : Process("Cli")
private static void HandleCommand(string input)
{
if (string.IsNullOrWhiteSpace(input))
{
return;
}
bool handled = CommandManager.TryExecute(
input,
+2 -5
View File
@@ -1,13 +1,10 @@
using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Threading.Tasks;
using RemSox.Processing;
using RemSox.Processing.IPC;
using RemSox.UI.GUI.UIEelements.Shapes;
using RemSox.UI.GUI.Windows;
using System.Drawing;
namespace RemSox.Processes;
public class TestProcess() : Process("Test Process")