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; // w w w. j a v a 2 s. co m import game.helpers.AssetLoader; public class Wall extends TileSprite { public Wall(int x, int y) { super(AssetLoader.wall, x, y); movementCost = 1000; defenseBonus = 0; attackBonus = 0; } }