using UnityEditor; using UnityEngine; namespace XNodeEditor { /// /// Workaround since c# doesn't support nested interfaces. /// /// Used with INodeEditor and INodeGraphEditor. /// public interface ICustomEditor { T Target { get; } SerializedObject SerializedObject { get; } } }