package dragon.io.display;
import javax.swing.JFrame;
public class Display {
private frame;
private String title;
private int width, height;
public Display(String title, int width, int height){
this.title = title;
this.width = width;
this.height = height;
creatDisplay();
}
private void creatDisplay(){
frame = new JFrame(title);
frame.setSize(width, height);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setResizable(false);
frame.setlocationRelativeTo(null);
frame.setVisible(true);
}
}
вот мой код, но я запутался внешне