StellarXipher/Library/PackageCache/com.unity.shadergraph@d57efd43b1c1/Editor/Data/Interfaces/Graph/IEdge.cs
2025-02-06 16:45:46 -05:00

11 lines
185 B
C#

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