13 lines
391 B
Java
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);
|
|
});
|
|
}
|
|
} |