Back to project page fun-gl.
The source code is released under:
Apache License
If you think the Android project fun-gl listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.jcxavier.android.opengl.game.manager.input; /*from w ww .ja v a 2 s. c om*/ import android.view.MotionEvent; /** * Created on 12/03/2014. * * @author Joo Xavier <jcxavier@jcxavier.com> */ public interface InputHandler { boolean processTouch(MotionEvent event); }