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 ww w .j a va2 s. co m import game.helpers.AssetLoader; public class Water extends TileSprite { public Water(int x, int y) { super(AssetLoader.water, x, y); movementCost = 5; defenseBonus = 0; attackBonus = 0; } }