16 lines
308 B
Java
16 lines
308 B
Java
|
|
import java.awt.*;
|
||
|
|
import javax.swing.*;
|
||
|
|
|
||
|
|
public class VueJardin extends JFrame {
|
||
|
|
|
||
|
|
private Parcelle parcelleactive;
|
||
|
|
|
||
|
|
public VueJardin(Parcelle p1){
|
||
|
|
super("Jardin");
|
||
|
|
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||
|
|
this.setSize(500,500);
|
||
|
|
this.parcellevisible = p1;
|
||
|
|
this.setVisible(true);
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|