Back to project page Freebloks-Android.
The source code is released under:
GNU General Public License
If you think the Android project Freebloks-Android 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 de.saschahlusiak.freebloks.view.model; import android.graphics.PointF; public interface ViewElement { boolean handlePointerDown(PointF m); boolean handlePointerMove(PointF m); boolean handlePointerUp(PointF m); boolean execute(float elapsed); }