13 lines
298 B
C#
13 lines
298 B
C#
using System;
|
|
using UnityEngine.UIElements;
|
|
|
|
namespace Misaki.GraphView.Editor
|
|
{
|
|
public interface IInspectable
|
|
{
|
|
public Action<IInspectable> OnItemSelected { get; set; }
|
|
|
|
public string InspectorName { get; }
|
|
public VisualElement CreateInspector();
|
|
}
|
|
} |