Files
CleanCode/CleanDemo/IAttackable.cs
2026-03-08 11:55:18 +01:00

5 lines
118 B
C#

public interface IAttackable {
string Name { get; }
bool IsDead { get; }
void TakeDamage(int amount);
}