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