forked from Misaki/GhostEngine
12 lines
209 B
C#
12 lines
209 B
C#
namespace Ghost.Editor.Core.Inspector;
|
|
|
|
internal interface IInspectorService
|
|
{
|
|
public IInspectable? SelectedInspectable
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public event Action? OnSelectionChanged;
|
|
} |