Back to project page ScoponeDaPolso.
The source code is released under:
GNU General Public License
If you think the Android project ScoponeDaPolso 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 org.gdg.bari.entities; //from w w w .ja v a2 s. com public class Constants { public static final int MIN_PLAYERS = 1; public static final int MAX_PLAYERS = 3; // Card Seeds public static final String SEED_COPPE = "COPPE"; public static final String SEED_BASTONI = "BASTONI"; public static final String SEED_DENARI = "DENARI"; public static final String SEED_SPADE = "SPADE"; public static final String[] SEEDS = {SEED_COPPE, SEED_BASTONI, SEED_DENARI, SEED_SPADE}; /*public static enum SEEDS{ COPPE, BASTONI, DENARI, SPADE }*/ // Card Status public static final int STATUS_IN_HAND = 1; public static final int STATUS_ON_TABLE = 2; public static final int STATUS_TAKEN = 3; // Fragment Names public static final String FRAGMENT_LOGIN = "LoginFragment"; public static final String FRAGMENT_MENU = "MenuFragment"; public static final String FRAGMENT_GAME = "GameFragment"; public static final String IS_DOING_TURN = "isDoingTurn"; }