| 123456789101112131415161718192021222324252627282930313233343536373839 |
- using System.Collections.Generic;
- namespace Model
- {
- public class NodeProto
- {
- public int nodeId;
- public string name;
- public string describe = "";
-
- public BehaviorTreeArgsDict args_dict;
-
- public List<NodeProto> children = new List<NodeProto>();
- public List<NodeProto> Children
- {
- get
- {
- return this.children;
- }
- set
- {
- this.children = value;
- }
- }
- public NodeProto()
- {
- this.args_dict = new BehaviorTreeArgsDict();
- }
- public NodeProto(BehaviorTreeArgsDict dict)
- {
- this.args_dict = dict;
- }
- }
- }
|