Nexus/Library/PackageCache/com.unity.shadergraph@759cfc176571/Editor/Data/Interfaces/Graph/IEdge.cs
2026-01-06 17:23:00 +01:00

11 lines
185 B
C#

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