global event for projects running changed

This commit is contained in:
Matt Parker
2025-08-08 00:14:26 +10:00
parent 85d8a129a2
commit f220e31b36
3 changed files with 24 additions and 3 deletions

View File

@@ -0,0 +1,7 @@
namespace SharpIDE.Application.Features.Events;
public static class GlobalEvents
{
public static event Func<Task> ProjectsRunningChanged = () => Task.CompletedTask;
public static void InvokeProjectsRunningChanged() => ProjectsRunningChanged?.Invoke();
}