5 lines
118 B
C#
5 lines
118 B
C#
public interface IAttackable {
|
|
string Name { get; }
|
|
bool IsDead { get; }
|
|
void TakeDamage(int amount);
|
|
} |