package main; import java.awt.Dimension; import javax.swing.JFrame; import sun.applet.Main; public class MainWindow extends JFrame { MainScreen mainScreen; public MainWindow() { this.setTitle(""); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setResizable(false); mainScreen = new MainScreen(); mainScreen.setPreferredSize(new Dimension(MainClass.SCREEN_WIDTH, MainClass.SCREEN_HEIGHT)); this.add(mainScreen); this.pack(); this.setLocationRelativeTo(null); this.setVisible(true); } }