public void LoseScore(int scoreToLose)
 {
     this.currentScore -= scoreToLose;
     OnPlayerScoreChange?.Invoke(this.currentScore);
 }
 public void AddScore(int scoreToAdd)
 {
     this.currentScore += scoreToAdd;
     OnPlayerScoreChange?.Invoke(this.currentScore);
 }