polygone/Library/PackageCache/com.unity.visualscripting@1.5.2/Runtime/VisualScripting.Flow/Ports/IUnitValuePort.cs
2021-08-02 05:44:37 -04:00

9 lines
138 B
C#

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