PIbd-22_Petrushin_E.A._Self.../SelfPropelledArtilleryUnit/SelfPropelledArtilleryUnit.java
2023-12-05 13:45:57 +04:00

12 lines
343 B
Java

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