Exemple #1
0
 // Reduce score when damaged or missing
 public void ReduceScore()
 {
     if (currentScore >= minusPointsPerMiss)
     {
         currentScore -= minusPointsPerMiss;
         interfaceController.SetScore();
         interfaceController.FlashScoreReduction();
     }
 }