StellarXipher/Library/PackageCache/com.unity.visualscripting@1b53f46e931b/Runtime/VisualScripting.Flow/Ports/IUnitPortDefinition.cs
2025-02-06 16:45:46 -05:00

12 lines
241 B
C#

namespace Unity.VisualScripting
{
public interface IUnitPortDefinition
{
string key { get; }
string label { get; }
string summary { get; }
bool hideLabel { get; }
bool isValid { get; }
}
}