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