13 lines
318 B
Java
13 lines
318 B
Java
import javax.swing.*;
|
|
import java.awt.*;
|
|
|
|
public class ManieTest{
|
|
public static void main(String[] args) {
|
|
JFrame fenetre = new JFrame("Menu");
|
|
fenetre.setSize(1040, 1000);
|
|
fenetre.setLocation(0, 0);
|
|
fenetre.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
|
|
|
fenetre.setVisible(true);
|
|
}
|
|
} |