Beispiel #1
0
 public void RemovePinchOut(EasyTouch.PinchOutHandler handler)
 {
     if (handler != null && this.m_PinchOutList.Contains(handler))
     {
         this.m_PinchOutList.Remove(handler);
     }
 }
Beispiel #2
0
 public void RegisterPinchOut(EasyTouch.PinchOutHandler handler)
 {
     if (handler != null && !this.m_PinchOutList.Contains(handler))
     {
         this.m_PinchOutList.Add(handler);
     }
 }