15 lines
244 B
Java
15 lines
244 B
Java
package Etats;
|
|
|
|
import Person.Personnage;
|
|
|
|
public abstract class EtatPersonnageAbstrait {
|
|
|
|
protected Personnage joueur;
|
|
|
|
protected EtatPersonnageAbstrait(Personnage perso){
|
|
this.joueur = perso;
|
|
}
|
|
|
|
protected abstract void execute();
|
|
}
|