13 lines
216 B
Java
13 lines
216 B
Java
package Etats;
|
|
|
|
import Person.Personnage;
|
|
|
|
public class EtatPersonnageKO extends EtatPersonnageAbstrait {
|
|
|
|
public EtatPersonnageKO(Personnage perso) {
|
|
super(perso);
|
|
// TODO Auto-generated constructor stub
|
|
}
|
|
|
|
}
|