예제 #1
0
파일: Element.cs 프로젝트: v-karpov/Nez
 /// <summary>
 /// Removes this element from its parent, if it has a parent
 /// </summary>
 public bool Remove()
 {
     if (parent != null)
     {
         return(parent.RemoveElement(this));
     }
     return(false);
 }