public interface IAttackable { string Name { get; } bool IsDead { get; } void TakeDamage(int amount); }