Files
LowPolyBattleSim/Library/PackageCache/com.unity.visualscripting@1b53f46e931b/Runtime/VisualScripting.Flow/Ports/IUnitPortDefinition.cs

12 lines
241 B
C#
Raw Normal View History

2025-06-27 23:27:49 +01:00
namespace Unity.VisualScripting
{
public interface IUnitPortDefinition
{
string key { get; }
string label { get; }
string summary { get; }
bool hideLabel { get; }
bool isValid { get; }
}
}