Android Open Source - googol Coin






From Project

Back to project page googol.

License

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.

Java Source Code

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;
  }

}




Java Source Code List

com.martinb.googol.Googol.java
com.martinb.googol.Control.Assets.java
com.martinb.googol.Control.Input.java
com.martinb.googol.Control.Path.java
com.martinb.googol.Control.Upgrades.java
com.martinb.googol.Objects.Body.java
com.martinb.googol.Objects.Character.java
com.martinb.googol.Objects.Coin.java
com.martinb.googol.Objects.World.java
com.martinb.googol.Screens.MenuScreen.java
com.martinb.googol.Screens.Screen.java
com.martinb.googol.android.AndroidLauncher.java
com.martinb.googol.client.HtmlLauncher.java
com.martinb.googol.desktop.DesktopLauncher.java