create BuildPanel scene

This commit is contained in:
Matt Parker
2025-08-27 20:43:13 +10:00
parent 71dd132213
commit a00f5a414b
6 changed files with 79 additions and 5 deletions

View File

@@ -1,8 +1,10 @@
using SharpIDE.Application.Features.Run;
using SharpIDE.Application.Features.Build;
using SharpIDE.Application.Features.Run;
namespace SharpIDE.Godot;
public static class Singletons
{
public static RunService RunService { get; } = new RunService();
public static BuildService BuildService { get; } = new BuildService();
}