// Adds the given child thoughtform.
 public void AddChild(Thoughtform child)
 {
     child.SetParent(this);
     children.Add(child);
 }