Ejemplo n.º 1
0
 public void RemoveChild(Mesh child)
 {
     children.Remove(child);
     child.Parent = null;
 }
Ejemplo n.º 2
0
 public void AddChild(Mesh child)
 {
     children.AddLast(child);
     child.Parent = this;
 }