Files
Bombaleila/Library/PackageCache/com.unity.shadergraph@c8830f61858d/Editor/Data/Interfaces/Graph/IEdge.cs
2026-03-03 00:39:30 +05:00

11 lines
185 B
C#

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