Guest User

Untitled

a guest
May 28th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. public static void main(String[] args) {
  2. JFrame frame = new JFrame("Game");
  3. frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  4. //frame.setLocationRelativeTo(null);
  5. frame.setPreferredSize(new Dimension(416,436));
  6.  
  7. Game game = new Game();
  8. LevelPanel lp = new LevelPanel(game);
  9.  
  10. JLabel status = new JLabel("Status");
  11. status.setPreferredSize(new Dimension(100,10));
  12.  
  13. frame.getContentPane().add(status);
  14. frame.getContentPane().add(lp);
  15.  
  16. frame.pack();
  17. frame.setVisible(true);
  18. }
Add Comment
Please, Sign In to add comment