Back to project page block-composer.
The source code is released under:
MIT License
If you think the Android project block-composer 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 bwr.blockcomposer.ui; //from w w w .ja v a2 s. c o m import javax.microedition.khronos.opengles.GL10; import android.content.Context; public interface UIElement { void update(Context context, GL10 gl, long dt); int getId(); boolean isHit(int x, int y); }