namespace UHFPS.Runtime
{
public interface IHealable
{
///
/// Override this method to define custom behavior when an entity receives a health call.
///
void OnApplyHeal(int healAmount);
///
/// Override this method to define custom behavior when applying maximum heal.
///
void ApplyHealMax();
}
}