Exemplo n.º 1
0
 public void RegisterTouchDown(EasyTouch.TouchDownHandler handler)
 {
     if (handler != null && !this.m_TouchDownList.Contains(handler))
     {
         this.m_TouchDownList.Add(handler);
     }
 }
Exemplo n.º 2
0
 public void RemoveTouchDown(EasyTouch.TouchDownHandler handler)
 {
     if (handler != null && this.m_TouchDownList.Contains(handler))
     {
         this.m_TouchDownList.Remove(handler);
     }
 }
Exemplo n.º 3
0
 public static void UnRegisterDownEvent(EasyTouch.TouchDownHandler call)
 {
     EasyTouch.On_TouchDown -= call;
 }