Developpement/23DEV1.1/TPS2/TP01/controle/ManieTest.java

13 lines
343 B
Java
Raw Permalink Normal View History

2024-12-09 11:53:11 +01:00
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.add(new Manie());
fenetre.setVisible(true);
}
}