Files
Bombaleila/Assets/ThunderWire Studio/UHFPS/Content/Scripts/Runtime/Interfaces/Health/IHealable.cs
2026-03-03 05:27:03 +05:00

15 lines
431 B
C#

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