Back to project page Castle-Invaders.
The source code is released under:
GNU General Public License
If you think the Android project Castle-Invaders 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 com.noobgygames.castleinvaders.ui; //from ww w . j a v a 2s .c o m import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.math.Rectangle; import com.noobygames.castleinvaders.store.StoreObject; import com.noobygames.utils.ui.ClickableElement; public class StoreElement extends ClickableElement { StoreObject obj; public StoreElement(Rectangle position, Texture tex, StoreObject obj) { super(position, tex); this.obj = obj; } @Override public void onClick() { // TODO Auto-generated method stub } }