PIbd-22_Petrushin_E.A._Self.../SelfPropelledArtilleryUnit/SelfPropelledArtilleryUnit.java
2023-12-06 11:17:00 +04:00

13 lines
391 B
Java

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