Files
2026-02-21 16:45:37 +08:00

20 lines
297 B
C#

using System;
namespace SRDebugger.Services
{
public interface IDebugPanelService
{
bool IsLoaded { get; }
bool IsVisible { get; set; }
DefaultTabs? ActiveTab { get; }
event Action<IDebugPanelService, bool> VisibilityChanged;
void Unload();
void OpenTab(DefaultTabs tab);
}
}