Affichage
This commit is contained in:
15
Affichage/Test.java
Normal file
15
Affichage/Test.java
Normal file
@@ -0,0 +1,15 @@
|
||||
import javax.swing.*;
|
||||
|
||||
public class Test {
|
||||
public static void main(String[] args) {
|
||||
JFrame fenetre = new JFrame();
|
||||
fenetre.setSize(1500, 1050);
|
||||
fenetre.setLocation(150, 30);
|
||||
fenetre.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||||
|
||||
Affiche aff = new Affiche();
|
||||
fenetre.add(aff);
|
||||
|
||||
fenetre.setVisible(true);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user