namespace Movementtests.interfaces; public interface IHealthable { float CurrentHealth { get; set; } void ReduceHealth(float amount); }