12 lines
315 B
Java
Raw Normal View History

2023-11-08 20:01:23 +04:00
package SelfPropelledArtilleryUnit;
2023-11-06 15:52:02 +04:00
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);
});
}
}