Advertisement
Guest User

Variables.java

a guest
Aug 18th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. package com.polonez11212;
  2.  
  3. import javax.swing.*;
  4. import java.awt.*;
  5.  
  6. public class Variables {
  7.  
  8.  
  9. //START FRAME
  10.  
  11.  
  12. public JFrame window;
  13. public Container con;
  14.  
  15. public JPanel startTitlePanel,startButtonPanel;
  16. public JLabel startTitleLabel;
  17. public Font startTitleFont= new Font("Dialog", Font.BOLD, 60);
  18. public Font startTitleButton = new Font("Dialog", Font.PLAIN, 40);
  19. public Color backgroundFrame = new Color(180,180,180);
  20. public Color buttonColor = new Color(144,144,144);
  21. public JButton startButton;
  22.  
  23.  
  24. //CHOOSE CLASS FRAME
  25.  
  26. public JPanel classesTitlePanel, threeButtonsPanel;
  27. public JLabel classesTitleLabel;
  28. public JButton warrior, mage, archer;
  29.  
  30. public String choosenClass;
  31. public Color classChooseFrameColor = new Color(144,144,144);
  32. public Color backgroundClassButton = new Color(100,100,100);
  33. public Font classesChooseFont = new Font("Dialog", Font.PLAIN, 30);
  34.  
  35.  
  36. public JButton continueClassButton;
  37. public JPanel continueClassPanel;
  38.  
  39.  
  40. // CLASS ATTITUDES
  41.  
  42. public JPanel titleAttitudePanel, choosenAttitudeClassPanel , hpAttitudePanel, mpAttitudePanel, dmgAttitudePanel;
  43. public JLabel titleAttitudeLabel, choosenAttitudeClassLabel , hpAttitudeLabel, mpAttitudeLabel, dmgAttitudeLabel;
  44.  
  45.  
  46.  
  47.  
  48. }
  49.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement