12 lines
343 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(() -> {
2023-12-05 13:45:57 +04:00
FormSPAUCollection form = new FormSPAUCollection();
2023-11-06 15:52:02 +04:00
form.setSize(900, 500);
form.setVisible(true);
});
}
}