Back to project page AndroidGameDev.
The source code is released under:
Apache License
If you think the Android project AndroidGameDev 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 cc.rafazz.framework.implementation; /*from ww w.j av a 2 s .c o m*/ import java.util.List; import android.view.View.OnTouchListener; import cc.rafazz.framework.Input.TouchEvent; public interface TouchHandler extends OnTouchListener { public boolean isTouchDown(int pointer); public int getTouchX(int pointer); public int getTouchY(int pointer); public List<TouchEvent> getTouchEvents(); }