11 lines
185 B
C#
11 lines
185 B
C#
|
using System;
|
||
|
|
||
|
namespace UnityEditor.Graphing
|
||
|
{
|
||
|
interface IEdge : IEquatable<IEdge>
|
||
|
{
|
||
|
SlotReference outputSlot { get; }
|
||
|
SlotReference inputSlot { get; }
|
||
|
}
|
||
|
}
|