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