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.

IUnitDescriptor.cs 423B

1234567891011121314151617181920212223
  1. namespace Unity.VisualScripting
  2. {
  3. public interface IUnitDescriptor : IDescriptor
  4. {
  5. IUnit unit { get; }
  6. new UnitDescription description { get; }
  7. string Title();
  8. string ShortTitle();
  9. string Surtitle();
  10. string Subtitle();
  11. string Summary();
  12. EditorTexture Icon();
  13. void DescribePort(IUnitPort port, UnitPortDescription description);
  14. }
  15. }