Back to project page acceptableLosses.
The source code is released under:
MIT License
If you think the Android project acceptableLosses 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 acceptableLosses.controls.commands; //from ww w . jav a2 s. co m import com.stewsters.util.math.Point2i; public class TapCommand implements Command { public Point2i point2i; public TapCommand(Point2i point2i) { this.point2i = point2i; } }