final commit?

This commit is contained in:
Sylvia 2026-07-14 20:23:37 -07:00
parent 0e2a7cc7c3
commit 3f53e2caa8
59 changed files with 3989 additions and 1668 deletions

View file

@ -26,7 +26,7 @@ public class Entity : MonoBehaviour
}
}
public void Heal(int healing)
public virtual void Heal(int healing)
{
health += healing;
health = Math.Clamp(health, 0, maxHealth);