10 lines
285 B
Java
Raw Permalink Normal View History

2022-11-22 08:45:54 +04:00
import javax.swing.*;
public class Program {
public static void main(String[] args) {
2022-12-06 12:08:04 +04:00
FormShipDisplay form = new FormShipDisplay();
2022-11-22 08:45:54 +04:00
form.setSize(640, 480);
form.setVisible(true);
form.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
}
}