Nur die besten Spiele ;3
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
480 B

2 years ago
  1. package hauptmenue;
  2. import java.awt.Dimension;
  3. import javax.swing.JFrame;
  4. import solitaer.SolitaerGamePanel;
  5. public class GameWindow extends JFrame {
  6. /**
  7. *
  8. */
  9. private static final long serialVersionUID = 1L;
  10. private final SolitaerGamePanel gamePanel = new SolitaerGamePanel();
  11. public GameWindow() {
  12. setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  13. gamePanel.setPreferredSize(new Dimension(1180, 780));
  14. add(gamePanel);
  15. pack();
  16. setVisible(true);
  17. }
  18. }