Ajout fenetre

This commit is contained in:
EmmanuelTiamzon
2025-12-05 10:52:51 +01:00
parent c92acbe2e7
commit 19e02c8747

View File

@@ -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);
}
}