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

10 lines
138 B
C#

using System;
namespace Unity.VisualScripting
{
public interface IUnitValuePort : IUnitPort
{
Type type { get; }
}
}