Exemplo n.º 1
0
 public void RemoveLongTapStart(EasyTouch.LongTapStartHandler handler)
 {
     if (handler != null && this.m_LongTapStartList.Contains(handler))
     {
         this.m_LongTapStartList.Remove(handler);
     }
 }
Exemplo n.º 2
0
 public void RegisterLongTapStart(EasyTouch.LongTapStartHandler handler)
 {
     if (handler != null && !this.m_LongTapStartList.Contains(handler))
     {
         this.m_LongTapStartList.Add(handler);
     }
 }