Ejemplo n.º 1
0
 public void RemoveSwipeEnd(EasyTouch.SwipeEndHandler handler)
 {
     if (handler != null && this.m_SwipeEndList.Contains(handler))
     {
         this.m_SwipeEndList.Remove(handler);
     }
 }
Ejemplo n.º 2
0
 public void RegisterSwipeEnd(EasyTouch.SwipeEndHandler handler)
 {
     if (handler != null && !this.m_SwipeEndList.Contains(handler))
     {
         this.m_SwipeEndList.Add(handler);
     }
 }