Skip to content

Instantly share code, notes, and snippets.

@benyaminbeyzaie
Last active May 3, 2020 18:32
Show Gist options
  • Save benyaminbeyzaie/1e5a506682909e837b5eb267c423ecae to your computer and use it in GitHub Desktop.
Save benyaminbeyzaie/1e5a506682909e837b5eb267c423ecae to your computer and use it in GitHub Desktop.
public class Constants {
public static String TITLE;
public static int STANDARD_STATES_WIDTH;
public static int STANDARD_STATES_HEIGHT;
public static Color BUTTON_COLOR_1;
static void init(Setting setting){
TITLE = setting.getTITLE();
STANDARD_STATES_WIDTH = setting.getSTANDARD_STATES_WIDTH();
STANDARD_STATES_HEIGHT = setting.getSTANDARD_STATES_HEIGHT();
BUTTON_COLOR_1 = setting.getBUTTON_COLOR_1();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment