Exemplo n.º 1
0
 public void RemoveElement(SmartElement e)
 {
     if (elements.Contains(e))
     {
         elements.Remove(e);
         Changed = true;
     }
 }
Exemplo n.º 2
0
 public void AddElement(SmartElement e)
 {
     elements.Add(e);
     Changed = true;
 }