23 lines
578 B
Java
23 lines
578 B
Java
// Tom Monint et Clément Martins
|
|
// main_ex V4
|
|
// 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");
|
|
int ligne=10;
|
|
int collonne=20;
|
|
int bombe=12;
|
|
fenetre.setLocation(0,0);
|
|
//on choisi une taille arbitraire
|
|
|
|
//nous utiliserons un gestionnaire GridLayout de dimensions choisi précédament
|
|
plateau plat = new plateau(fenetre,ligne,collonne, bombe);
|
|
|
|
}
|
|
} |