creation de la page aide
reste objectif et a propos
This commit is contained in:
parent
2e6e772c8b
commit
20f4e5a236
@ -69,6 +69,9 @@
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" value="Aide"/>
|
||||
</Properties>
|
||||
<Events>
|
||||
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jMIaideActionPerformed"/>
|
||||
</Events>
|
||||
</MenuItem>
|
||||
<MenuItem class="javax.swing.JMenuItem" name="jMIobjectif">
|
||||
<Properties>
|
||||
|
@ -343,6 +343,11 @@ public class Plateau_de_jeu extends javax.swing.JFrame {
|
||||
jMenu2.setText("??");
|
||||
|
||||
jMIaide.setText("Aide");
|
||||
jMIaide.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
jMIaideActionPerformed(evt);
|
||||
}
|
||||
});
|
||||
jMenu2.add(jMIaide);
|
||||
|
||||
jMIobjectif.setText("Objectif");
|
||||
@ -442,6 +447,11 @@ public class Plateau_de_jeu extends javax.swing.JFrame {
|
||||
// TODO add your handling code here:
|
||||
}//GEN-LAST:event_jMIobjectifActionPerformed
|
||||
|
||||
private void jMIaideActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jMIaideActionPerformed
|
||||
information j = new information();
|
||||
j.aide();
|
||||
}//GEN-LAST:event_jMIaideActionPerformed
|
||||
|
||||
|
||||
|
||||
private void majStatistiquesPersos(){
|
||||
|
30
JDR/src/Presentation/information.java
Normal file
30
JDR/src/Presentation/information.java
Normal file
@ -0,0 +1,30 @@
|
||||
/*
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package Presentation;
|
||||
|
||||
import javax.swing.JOptionPane;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author emile.lalorcey
|
||||
*/
|
||||
public class information {
|
||||
|
||||
public information(){
|
||||
|
||||
}
|
||||
|
||||
public void aide(){
|
||||
String text = "Vous voici dans un jeu\n"
|
||||
+ "Ce jeu se déroule comme un battle royal,\n"
|
||||
+ "en effet il ne s'arrète que si 1 seul personnage est encore en vie\n"
|
||||
+ "Amusez-vous bien !";
|
||||
JOptionPane.showMessageDialog(null, text, "Aide envoyé", JOptionPane.INFORMATION_MESSAGE);
|
||||
}
|
||||
|
||||
public void objectif(){
|
||||
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user