9 lines
236 B
Java
9 lines
236 B
Java
import javax.swing.*;
|
|
|
|
public class Program {
|
|
public static void main(String[] args){
|
|
FormMapWithSetTracktor form = new FormMapWithSetTracktor();
|
|
form.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
|
|
}
|
|
}
|