add appstate

This commit is contained in:
Matt Parker
2025-10-01 19:47:47 +10:00
parent 8a0dd9109e
commit 4651c8012c
6 changed files with 74 additions and 9 deletions

View File

@@ -1,5 +1,6 @@
using SharpIDE.Application.Features.Build;
using SharpIDE.Application.Features.Run;
using SharpIDE.Godot.Features.IdeSettings;
namespace SharpIDE.Godot;
@@ -7,4 +8,5 @@ public static class Singletons
{
public static RunService RunService { get; } = new RunService();
public static BuildService BuildService { get; } = new BuildService();
public static AppState AppState { get; set; } = null!;
}