2022-11-16 16:44:07 +04:00
|
|
|
import javax.swing.*;
|
|
|
|
|
|
|
|
public class Main {
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
2022-11-27 15:16:31 +04:00
|
|
|
JFrame frame = new JFrame("Самолёт");
|
2022-11-16 16:44:07 +04:00
|
|
|
frame.setContentPane(new FormPlane().Mainpanel);
|
|
|
|
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
|
|
|
frame.setLocation(500, 200);
|
|
|
|
frame.pack();
|
|
|
|
frame.setSize(800, 600);
|
|
|
|
frame.setVisible(true);
|
|
|
|
}
|
|
|
|
}
|