diff --git a/DEV.3.2/TP/TP3-Listes/1.Luminance/Fenetre.java b/DEV.3.2/TP/TP3-Listes/1.Luminance/Fenetre.java new file mode 100644 index 0000000..e94b181 --- /dev/null +++ b/DEV.3.2/TP/TP3-Listes/1.Luminance/Fenetre.java @@ -0,0 +1,12 @@ +import java.awt.*; +import javax.swing.*; + +public class Fenetre extends JFrame { + + public Fenetre() { + super("Luminance"); + this.setSize(300, 100); + this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); + this.setLocationRelativeTo(null); + } +} \ No newline at end of file