Pibd-22_Emelyanov_A.S._Airb.../Main.java
2022-12-13 17:02:16 +04:00

16 lines
463 B
Java

import javax.swing.*;
public class Main {
public static void main(String[] args) {
JFrame frame = new JFrame("Самолёт");
// frame.setContentPane(new FormMapWithSetPlanes().Mainpanel);
frame.setContentPane(new FormParam().MainPanel);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocation(500, 200);
frame.pack();
frame.setSize(800, 600);
frame.setVisible(true);
}
}