PIbd-22_Petrushin_E.A._Self.../SelfPropelledArtilleryUnit/SelfPropelledArtilleryUnit.java
2023-12-04 22:36:33 +04:00

12 lines
323 B
Java

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