public void TakeAttack() { this.Health -= 1; if (this.Health == 0) { SoldierDead?.Invoke(this); } }
protected void OnDeath(SoldierArgs args) { SoldierDead?.Invoke(this, args); }