IUnitValuePort.cs 138 B

123456789
  1. using System;
  2. namespace Unity.VisualScripting
  3. {
  4. public interface IUnitValuePort : IUnitPort
  5. {
  6. Type type { get; }
  7. }
  8. }