package Etats; import Person.Personnage; public abstract class EtatPersonnageAbstrait { protected Personnage joueur; protected EtatPersonnageAbstrait(Personnage perso){ this.joueur = perso; } protected abstract void execute(); }