Beispiel #1
0
 public void LoseLives(int livesToLose)
 {
     this.currentCoins -= livesToLose;
     OnPlayerLivesChange?.Invoke(this.currentLives);
 }
Beispiel #2
0
 public void AddLives(int livesToAdd)
 {
     this.currentLives += livesToAdd;
     OnPlayerLivesChange?.Invoke(this.currentLives);
 }