Files
BUT3ProjetJeuGroupe/Affichage/Test.java
2025-10-16 11:59:41 +02:00

15 lines
372 B
Java

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);
}
}