Rasagar/Library/PackageCache/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/IUnitPortDefinition.cs

12 lines
241 B
C#
Raw Normal View History

2024-08-26 13:07:20 -07:00
namespace Unity.VisualScripting
{
public interface IUnitPortDefinition
{
string key { get; }
string label { get; }
string summary { get; }
bool hideLabel { get; }
bool isValid { get; }
}
}