using System; namespace UnityEditor.Graphing { public interface IEdge : IEquatable { SlotReference outputSlot { get; } SlotReference inputSlot { get; } } }