IUnitControlPort.cs 171 B

12345678
  1. namespace Unity.VisualScripting
  2. {
  3. public interface IUnitControlPort : IUnitPort
  4. {
  5. bool isPredictable { get; }
  6. bool couldBeEntered { get; }
  7. }
  8. }