Back to project page feup-lpoo-android-tower-defense.
The source code is released under:
MIT License
If you think the Android project feup-lpoo-android-tower-defense 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 pt.up.fe.lpoo.framework; /* w w w .j a va 2 s . co m*/ import java.util.List; /** * Information about the framework interface can be found at * http://www.kilobolt.com/day-5-the-android-game-framework-part-i.html */ 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(); }