- package views;
- import java.awt.*;
- public class Constants {
- public static final int CARD_WIDTH=50;
- public static final int CARD_HEIGHT=75;
- public Step STEP;
- public enum Step{
- SelectMyHands,
- SelectOpponentHands,
- Declare,
- Confirm
- }
- public static String CLOSED_SYMBOL="?";
- public static int DECK_COUNT=11;
- public static Color SELECTED_COLOR=Color.CYAN;
- }