2022-04-27 13:19:57 +02:00
|
|
|
// Tom Monint et Clément Martins
|
2022-04-28 21:31:03 +02:00
|
|
|
// main_ex V4
|
2022-04-27 13:19:57 +02:00
|
|
|
// Classe ayant pour but d'être executer
|
|
|
|
|
|
|
|
//importons les packages necessaires
|
|
|
|
import java.awt.*;
|
|
|
|
import javax.swing.*;
|
|
|
|
|
|
|
|
public class main_ex{
|
|
|
|
public static void main(String[] Args){
|
|
|
|
// on initialise une fenettre
|
|
|
|
JFrame fenetre = new JFrame("Démineur");
|
2022-04-29 00:33:24 +02:00
|
|
|
int ligne=10;
|
|
|
|
int collonne=20;
|
2022-04-29 14:20:40 +02:00
|
|
|
int bombe=12;
|
2022-04-27 13:19:57 +02:00
|
|
|
fenetre.setLocation(0,0);
|
|
|
|
//on choisi une taille arbitraire
|
2022-04-29 00:33:24 +02:00
|
|
|
|
2022-04-28 21:31:03 +02:00
|
|
|
//nous utiliserons un gestionnaire GridLayout de dimensions choisi précédament
|
2022-04-29 14:20:40 +02:00
|
|
|
plateau plat = new plateau(fenetre,ligne,collonne, bombe);
|
|
|
|
|
2022-04-27 13:19:57 +02:00
|
|
|
}
|
|
|
|
}
|