using System; namespace Movementtests.interfaces; public interface IDamageable { event Action DamageTaken; float TakeDamage(RDamage damage); }