Exemplo n.º 1
0
 public void Select(ISelectableBehaviour selectableObject) {
     if (selectableObject == null)
         return;
     selectedObjects.Add(selectableObject);
     selectableObject.Select();
     SelectionChanged.TryCall();
 }