гигантский ассет

This commit is contained in:
2026-03-03 05:27:03 +05:00
parent d49d929924
commit c432aa9263
5899 changed files with 9806933 additions and 230 deletions

View File

@@ -0,0 +1,15 @@
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();
}
}