public void handleMousePressMove(MMouseOrTouch mouse)
 {
     if (null != this.mOnMousePressMoveDispatch)
     {
         this.mOnMousePressMoveDispatch.dispatchEvent(mouse);
     }
 }
 public void handleMouseDown(MMouseOrTouch mouse)
 {
     if (null != this.mOnMouseDownDispatch)
     {
         this.mOnMouseDownDispatch.dispatchEvent(mouse);
     }
 }
 public void handleTouchStationary(MMouseOrTouch touch)
 {
     if (null != this.mOnTouchStationaryDispatch)
     {
         this.mOnTouchStationaryDispatch.dispatchEvent(touch);
     }
 }
 public void handleTouchCanceled(MMouseOrTouch touch)
 {
     if (null != this.mOnTouchCanceledDispatch)
     {
         this.mOnTouchCanceledDispatch.dispatchEvent(touch);
     }
 }
 public void handleTouchBegan(MMouseOrTouch touch)
 {
     if (null != this.mOnTouchBeganDispatch)
     {
         this.mOnTouchBeganDispatch.dispatchEvent(touch);
     }
 }