public void RemoveSwipe(EasyTouch.SwipeHandler handler) { if (handler != null && this.m_SwipeList.Contains(handler)) { this.m_SwipeList.Remove(handler); } }
public void RegisterSwipe(EasyTouch.SwipeHandler handler) { if (handler != null && !this.m_SwipeList.Contains(handler)) { this.m_SwipeList.Add(handler); } }