2023-11-08 20:01:23 +04:00
|
|
|
package SelfPropelledArtilleryUnit;
|
2023-11-06 15:52:02 +04:00
|
|
|
import javax.swing.*;
|
|
|
|
|
|
|
|
public class SelfPropelledArtilleryUnit {
|
|
|
|
public static void main(String[] args) {
|
|
|
|
SwingUtilities.invokeLater(() -> {
|
2023-12-04 22:36:33 +04:00
|
|
|
FormSPAU form = new FormSPAU();
|
2023-11-06 15:52:02 +04:00
|
|
|
form.setSize(900, 500);
|
|
|
|
form.setVisible(true);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|