version copilot

This commit is contained in:
EmmanuelTiamzon
2025-09-26 14:57:00 +02:00
parent e1060e79bd
commit f7de13bc2a
4 changed files with 60 additions and 31 deletions

View File

@@ -1,5 +1,14 @@
import java.awt.*;
import javax.swing.*;
public class Main {
public static void main(String[] args) {
ImageIcon[] images = {new ImageIcon("image1.jpeg"), new ImageIcon("image2.jpeg"), new ImageIcon("MICHEL.gif")};
GModel model = new GModel(images);
GFenetre fenetre = new GFenetre();
fenetre.setVisible(true);
}
}