14 lines
317 B
Java
14 lines
317 B
Java
|
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);
|
||
|
|
||
|
}
|
||
|
}
|