16 lines
330 B
Java
16 lines
330 B
Java
![]() |
import javax.swing.*;
|
||
|
import java.awt.*;
|
||
|
|
||
|
public class MainFond {
|
||
|
public static void main(String[] args) {
|
||
|
JFrame frame = new JFrame("Attente");
|
||
|
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||
|
|
||
|
Attente test = new Attente();
|
||
|
|
||
|
frame.setSize(500,500);
|
||
|
frame.setLocation(500,250);
|
||
|
frame.setVisible(true);
|
||
|
}
|
||
|
}
|