No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

IUnitPortDefinition.cs 241B

1234567891011
  1. namespace Unity.VisualScripting
  2. {
  3. public interface IUnitPortDefinition
  4. {
  5. string key { get; }
  6. string label { get; }
  7. string summary { get; }
  8. bool hideLabel { get; }
  9. bool isValid { get; }
  10. }
  11. }