switch between bottom panels

This commit is contained in:
Matt Parker
2025-08-27 20:57:25 +10:00
parent 9dae2140bb
commit c1dbaf4627
8 changed files with 101 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
namespace SharpIDE.Godot;
public static class GodotGlobalEvents
{
public static event Func<BottomPanelType, Task> LeftSideBarButtonClicked = _ => Task.CompletedTask;
public static void InvokeLeftSideBarButtonClicked(BottomPanelType type) => LeftSideBarButtonClicked?.Invoke(type);
}
public enum BottomPanelType
{
Run,
Build,
Problems
}