private void CheckFor1UP()
 {
     if (coinCount >= 100)
     {
         if (LM)
         {
             LM.AddLives();
         }
         ResetCoinCount();
     }
 }
Exemple #2
0
 public override void GiveReward()
 {
     livesManager.AddLives(lives);
 }