Settings management started

This commit is contained in:
2025-11-29 16:49:14 -06:00
parent c64386b985
commit aae22e57cf
8 changed files with 408 additions and 8 deletions

View File

@@ -9,6 +9,7 @@ public static class AppManager
public static ICogwheelConsole SzConsole { get; } = new SessionZeroConsole();
public static CommandsManager CommandsManager { get; } = new();
public static ConsoleControl ConsoleControl { get; } = new();
public static AppSettings Settings { get; } = new();
public static void ShowConsole()
{
@@ -27,4 +28,10 @@ public static class AppManager
{
MainWindow.ChangePage(pageName);
}
[Command(Name = "test")]
private static void Test()
{
COGWHEEL.LogWarning($"Trim size is: {ConsoleControl.OutputTrimSize}");
}
}