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