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.effects; //w w w . j a v a2 s . com import javax.microedition.khronos.opengles.GL10; import de.saschahlusiak.freebloks.view.BoardRenderer; public interface Effect { public boolean isEffected(int x, int y); public void render(GL10 gl, BoardRenderer renderer); public void renderShadow(GL10 gl, BoardRenderer renderer); public boolean isDone(); public boolean execute(float elapsed); }