DEV_BUT1/DEV2.1/CTRLBLANC/Exo4/Tuile.java

14 lines
317 B
Java
Raw Normal View History

2023-04-04 14:03:16 +02:00
import javax.swing.*;
import java.awt.*;
public class Tuile{
public static void main(String[] args) {
JFrame fenetre = new JFrame();
fenetre.setSize(1920,1080);
fenetre.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
CrocsCars cadre = new CrocsCars();
fenetre.add(cadre);
fenetre.setVisible(true);
}
}