2022-11-03 22:02:58 +04:00
|
|
|
import javax.swing.*;
|
|
|
|
|
|
|
|
public class Main {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
JFrame frame = new JFrame("Airbus");
|
2022-11-03 23:34:20 +04:00
|
|
|
frame.setContentPane(new FormMap().MainPanel);
|
2022-11-03 22:02:58 +04:00
|
|
|
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
|
|
|
frame.setLocation(500, 200);
|
|
|
|
frame.pack();
|
|
|
|
frame.setSize(1000, 500);
|
|
|
|
frame.setVisible(true);
|
|
|
|
}
|
2022-11-03 23:34:20 +04:00
|
|
|
}
|