Exemplo n.º 1
0
 public void RemoveChild(ConditionComponent re)
 {
     Children.Remove(re);
     re.Parent = null;
 }
Exemplo n.º 2
0
 public void AddChild(ConditionComponent re)
 {
     re.Parent = this;
     Children.Add(re);
 }