Affichage

This commit is contained in:
2025-10-16 11:59:41 +02:00
parent 296238a77a
commit 98ae6dc754
4 changed files with 70 additions and 0 deletions

15
Affichage/Test.java Normal file
View 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);
}
}