Back to project page googol.
The source code is released under:
MIT License
If you think the Android project googol 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.martinb.googol.Objects; //from w w w . ja v a2 s. co m import com.badlogic.gdx.graphics.Texture; import com.badlogic.gdx.math.Vector2; @SuppressWarnings("serial") public class Coin extends Character { static final Vector2 size = new Vector2(10, 10); float value; public Coin(float x, float y, Texture texture, float value, float difficulty, World world) { super(x, y, size.x, size.y, texture, difficulty, world); this.value = value; } }