2020-04-17 14:32:07 +02:00
|
|
|
|
package personnage;
|
|
|
|
|
|
|
|
|
|
import main.Joueur;
|
|
|
|
|
|
|
|
|
|
public class Charles extends CartePersonnage{
|
|
|
|
|
|
|
|
|
|
//constructeur
|
2020-04-18 19:39:59 +02:00
|
|
|
|
public Charles(String nom, int hp, Joueur joueur) {
|
|
|
|
|
super(nom, 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) {
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|