Back to project page Terry-Coin.
The source code is released under:
Apache License
If you think the Android project Terry-Coin 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.tcg.terry.entities; //from w w w .j a va2s.co m import com.badlogic.gdx.graphics.g2d.SpriteBatch; public class JumpButton extends Button { public JumpButton(float x, float y) { super("jump", x, y); } @Override public void draw(SpriteBatch batch) { super.draw(batch); } public void dispose() { super.dispose(); } public void debug() { super.debug(); } }