PIbd-22_Petrushin_E.A._Self.../SelfPropelledArtilleryUnit.java
2023-09-26 21:52:26 +04:00

11 lines
279 B
Java

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);
});
}
}