Beispiel #1
0
 /// <summary>
 /// Counts the number of nodes connected to this one
 /// </summary>
 /// <returns>number of GuiPath nodes below this one plus this one</returns>
 public int count()
 {
     if (m_child == null)
     {
         return(1);
     }
     return(m_child.count() + 1);
 }