5 lines
87 B
C#
Raw Normal View History

2025-08-11 20:37:42 +05:00
public interface IDamageable
{
bool IsDead();
void ApplyDamage(float amount);
}