Esempio n. 1
0
 public NodeFollower(Machine machine, Node startNode, NodeFollower parent)
 {
     this._machine  = machine;
     this._model    = machine._model;
     this.name      = machine.name;
     this.startNode = startNode;
     this.Parent    = parent;
     if (Parent != null)
     {
         parent.Children.Add(this);
     }
 }
Esempio n. 2
0
 public void FinishChild(NodeFollower child)
 {
     Children.Remove(child);
 }