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.helpers; //from www .j a va2 s .co m public class Constants { public static int mapWidth = 64; public static int mapHeight = 64; public static int numOfTileTypes = 8; public static int numOfUnitTypes = 1; public static int speedNeededForDoubleAttack = 4; }