Beispiel #1
0
 //Adds the specified node to the children of this node
 public void AddChild(MemoryGraphNode child)
 {
     children.Add(child);
 }
Beispiel #2
0
 //Add the specified node to the parents of this node
 public void AddParent(MemoryGraphNode parent)
 {
     parents.Add(parent);
 }