NodeProto.cs 428 B

1234567891011121314151617181920212223242526272829
  1. using System.Collections.Generic;
  2. namespace Model
  3. {
  4. public class NodeProto
  5. {
  6. public int nodeId;
  7. public string name;
  8. public string describe = "";
  9. public BehaviorTreeArgsDict args_dict = new BehaviorTreeArgsDict();
  10. public List<NodeProto> children = new List<NodeProto>();
  11. public List<NodeProto> Children
  12. {
  13. get
  14. {
  15. return this.children;
  16. }
  17. set
  18. {
  19. this.children = value;
  20. }
  21. }
  22. }
  23. }