PIbd-23_Polevoy_S.V._SelfPr.../Program.java

10 lines
313 B
Java
Raw Normal View History

2022-09-25 19:20:16 +04:00
import javax.swing.*;
2022-12-05 23:37:38 +04:00
import org.apache.logging.log4j.*;
2022-09-25 19:20:16 +04:00
public class Program {
public static void main(String[] args) {
2022-12-05 23:37:38 +04:00
FormMapWithSetArtilleries form = new FormMapWithSetArtilleries(LogManager.getLogger(Program.class));
2022-09-25 19:20:16 +04:00
form.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
}
}