Beispiel #1
0
 private void StopBooster(BoosterData booster)
 {
     if (booster.coroutine != null)
     {
         _mover.ReduceSpeed(booster.value);
         StopCoroutine(booster.coroutine);
         booster.coroutine = null;
     }
 }