using System; namespace Movementtests.interfaces; public interface IHealthable { event Action HealthChanged; event Action HealthDepleted; void ReduceHealth(IDamageable source, float amount); }