Back to project page AmazingGame.
The source code is released under:
GNU General Public License
If you think the Android project AmazingGame 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 game.objects; //from w ww.j a va2 s .c o m import game.helpers.AssetLoader; public class BlurpleBuilding extends TileSprite { public BlurpleBuilding(int x, int y) { super(AssetLoader.blurpleBuilding, x, y); movementCost = 1; defenseBonus = 2; attackBonus = 2; } }