Back to project page SnowLand.
The source code is released under:
GNU General Public License
If you think the Android project SnowLand 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.walrus.framework; //from ww w. ja v a2s . c om import java.util.List; public interface Input { public static class TouchEvent { public static final int TOUCH_DOWN = 0; public static final int TOUCH_UP = 1; public static final int TOUCH_DRAGGED = 2; public static final int TOUCH_HOLD = 3; public int type; public int x, y; public int pointer; } public boolean isTouchDown(int pointer); public int getTouchX(int pointer); public int getTouchY(int pointer); public List<TouchEvent> getTouchEvents(); }