SquareDash/Library/PackageCache/com.unity.visualscripting@1.9.1/Runtime/VisualScripting.Flow/Ports/IUnitPortDefinition.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01: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; }
}
}