2023-11-08 20:01:23 +04:00

12 lines
315 B
Java

package SelfPropelledArtilleryUnit;
import javax.swing.*;
public class SelfPropelledArtilleryUnit {
public static void main(String[] args) {
SwingUtilities.invokeLater(() -> {
Form form = new Form();
form.setSize(900, 500);
form.setVisible(true);
});
}
}