2025-03-10 17:31:32 +01:00
|
|
|
import javax.swing.*;
|
|
|
|
import java.awt.*;
|
|
|
|
|
|
|
|
public class Mafenetre extends JFrame {
|
|
|
|
|
|
|
|
public Mafenetre() {
|
2025-09-30 09:43:41 +02:00
|
|
|
super("Illumination");
|
2025-03-10 17:31:32 +01:00
|
|
|
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
|
|
|
this.setSize(697,156);
|
|
|
|
this.setLocation(500,250);
|
|
|
|
|
2025-09-30 09:43:41 +02:00
|
|
|
Illumination illumination = new Illumination(5);
|
|
|
|
this.add(illumination);
|
2025-03-10 17:31:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|