5 lines
87 B
C#

public interface IDamageable
{
bool IsDead();
void ApplyDamage(float amount);
}