Files
GhostEngine/Ghost.Editor.Core/Inspector/IInspectorService.cs

12 lines
209 B
C#

namespace Ghost.Editor.Core.Inspector;
internal interface IInspectorService
{
public IInspectable? SelectedInspectable
{
get;
set;
}
public event Action? OnSelectionChanged;
}