/*** * Klickspiel - Defines * Author: Christoph Mauerhofer, http://christophmauerhofer.com/ * Date: 2010/11/13 * * Class with defines ***/ // Defines class Defines { public static final String GAME_TITLE_STR = "Klickspiel v0.6 by Christoph Mauerhofer"; // game title to be shown in user interface public static final int BUTTONS_NUM = 6; // total number of buttons public static final float BUTTON_WIDTH = 50; // button width in pixels public static final float BUTTON_HEIGHT = 50; // button height in pixels public static final int LOWER_BORDER_POS = 50; // pixel position from top of lower border public static final long TOTAL_TIME_MSEC = 90000; // total time in milli seconds public static final String TARGET_PHP_URL = "http://christophmauerhofer.com/klickspiel/highscore/index.php"; // url of php-file, which receives and stores the highscores public static final String SECURITY_CODE = "8wgKSg88G292gS0d"; // code for computing hash to check if score is correct }