Add file system watcher v1

This commit is contained in:
Matt Parker
2025-10-08 00:18:13 +10:00
parent 80942c464b
commit f4356b7653
6 changed files with 118 additions and 11 deletions

View File

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