2020-04-17 14:32:07 +02:00
|
|
|
|
package personnage;
|
|
|
|
|
|
|
|
|
|
import main.Joueur;
|
|
|
|
|
|
|
|
|
|
public class Charles extends CartePersonnage{
|
|
|
|
|
|
|
|
|
|
//constructeur
|
2020-04-21 15:27:27 +02:00
|
|
|
|
public Charles(String nom, String desc ,int hp, Joueur joueur) {
|
|
|
|
|
super(nom,desc, hp, joueur);
|
2020-04-17 14:32:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-18 19:39:59 +02:00
|
|
|
|
//m<>thode
|
2020-04-17 14:32:07 +02:00
|
|
|
|
public void attaquer(Joueur j) {
|
|
|
|
|
|
|
|
|
|
}
|
2020-04-21 11:46:41 +02:00
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void utiliser() {
|
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
|
|
|
|
|
|
}
|
2020-04-17 14:32:07 +02:00
|
|
|
|
}
|