using System; namespace Framework.Actors { /// Presenter for actors than can play a hurt animation public interface IDamageableActorPresenter { /// Selects the state that displays the character hurt void SetPainState(); } } // namespace Framework.Actors