5 lines
85 B
C#
5 lines
85 B
C#
// IDamageable.cs
|
|
public interface IDamageable
|
|
{
|
|
void TakeDamage(float amount);
|
|
} |