using UnityEditor.ShaderGraph; namespace UnityEditor.ShaderGraph { interface ISGControlledElement { void OnControllerChanged(ref SGControllerChangedEvent e); void OnControllerEvent(SGControllerEvent e); } interface ISGControlledElement : ISGControlledElement where T : SGController { T controller { get; } } }