Newer
Older
Algolike / src / main / java / views / Constants.java
Shinji on 15 Jun 2022 417 bytes ・GUIを設置
  1. package views;
  2.  
  3. import java.awt.*;
  4.  
  5. public class Constants {
  6. public static final int CARD_WIDTH=50;
  7. public static final int CARD_HEIGHT=75;
  8. public Step STEP;
  9. public enum Step{
  10. SelectMyHands,
  11. SelectOpponentHands,
  12. Declare,
  13. Confirm
  14. }
  15. public static String CLOSED_SYMBOL="?";
  16. public static int DECK_COUNT=11;
  17. public static Color SELECTED_COLOR=Color.CYAN;
  18. }