예제 #1
0
파일: Mesh.cs 프로젝트: LukaHorvat/Electric
 public void RemoveChild(Mesh child)
 {
     children.Remove(child);
     child.Parent = null;
 }
예제 #2
0
파일: Mesh.cs 프로젝트: LukaHorvat/Electric
 public void AddChild(Mesh child)
 {
     children.AddLast(child);
     child.Parent = this;
 }