Ejemplo n.º 1
0
 public static bool Available(ElementStackToken stack)
 {
     return(!(
                stack == null ||
                stack.Equals(null) ||
                stack.Defunct ||
                stack.IsBeingAnimated ||
                DraggableToken.itemBeingDragged == stack
                ));
 }