Files
WhiteMan_Unity2D/Assets/02_Scripts/Combat/IDamageable.cs

5 lines
66 B
C#

public interface IDamageable
{
void TakeDamage(int amount);
}