ISelectUnit.cs 151 B

12345678
  1. namespace Unity.VisualScripting
  2. {
  3. [TypeIconPriority]
  4. public interface ISelectUnit : IUnit
  5. {
  6. ValueOutput selection { get; }
  7. }
  8. }