Exemplo n.º 1
0
 public void RemoveSwipe(EasyTouch.SwipeHandler handler)
 {
     if (handler != null && this.m_SwipeList.Contains(handler))
     {
         this.m_SwipeList.Remove(handler);
     }
 }
Exemplo n.º 2
0
 public void RegisterSwipe(EasyTouch.SwipeHandler handler)
 {
     if (handler != null && !this.m_SwipeList.Contains(handler))
     {
         this.m_SwipeList.Add(handler);
     }
 }