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