Rasagar/Library/PackageCache/com.unity.visualscripting/Runtime/VisualScripting.Flow/Ports/IUnitValuePort.cs
2024-08-26 23:07:20 +03:00

10 lines
138 B
C#

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