IConditionalNode.cs 314 B

123456789101112
  1. using System.Collections.Generic;
  2. using System.Reflection;
  3. namespace NodeGraphProcessor.Examples
  4. {
  5. interface IConditionalNode
  6. {
  7. IEnumerable< ConditionalNode > GetExecutedNodes();
  8. FieldInfo[] GetNodeFields(); // Provide a custom order for fields (so conditional links are always at the top of the node)
  9. }
  10. }