GokaPek fae4bc9884 1
2023-11-22 11:36:32 +04:00

14 lines
329 B
Java

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