/Code/src/com/game/Constants.java
https://bitbucket.org/DeveloperUX/behaviortree · Java · 38 lines · 10 code · 6 blank · 22 comment · 0 complexity · 1f338f55e2461088e9209555846bd56d MD5 · raw file
- package com.game;
-
- /**
- * Constant class.
- * All cross-system game constants go here.
- *
- * @author Ying
- *
- */
- public class Constants
- {
- private Constants() {}
-
- /**
- * Debug mode check.
- */
- public static final boolean DebugMode = false;
-
- /**
- * Color Intensity of the cursors
- */
- public static final float CursorColorIntensity = 0.8f;
-
- /**
- * Increment for the PowerUp glow
- */
- public static final float PowerUpAlphaIncrease = 0.05f;
-
- /**
- * Maximum number of players.
- */
- public static final int MaxPlayers = 6;
- /**
- * Size of a map tile.
- */
- public static final int TileWidth = 16;
-
- }