Fichier temporaire makefile suppression
This commit is contained in:
parent
79ce76af78
commit
8407bc43a2
@ -1,18 +0,0 @@
|
||||
JTextField field1 = new JTextField("Joueur 1");
|
||||
JTextField field2 = new JTextField("Joueur 2");
|
||||
Object[] message = {
|
||||
"Entrez le nom du joueur 1", field1,
|
||||
"Entrez le nom du joueur 2:", field2,
|
||||
};
|
||||
int choix = JOptionPane.showConfirmDialog(this, message, "Entrez les noms des joueurs", JOptionPane.OK_CANCEL_OPTION, JOptionPane.PLAIN_MESSAGE);
|
||||
if (choix == JOptionPane.OK_OPTION)
|
||||
{
|
||||
try {
|
||||
String J1 = field1.getText();
|
||||
String J2 = field2.getText();
|
||||
//Lancer la fonction de la classe Puissance4
|
||||
} catch (Exception e) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user