PIbd-21_Eliseev_E.E._Airbus.../Project/src/Main.java

16 lines
407 B
Java
Raw Normal View History

import javax.swing.*;
public class Main
{
public static void main(String[] args)
{
JFrame frame = new JFrame("Airbus");
frame.setContentPane(new FormMapWithSetPlanesGeneric().MainPanel);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocation(500, 200);
frame.pack();
frame.setSize(1000, 600);
frame.setVisible(true);
}
}