예제 #1
0
 public void LosePaddle()
 {
     extraLives--;
     OnPaddleLost?.Invoke();
 }
예제 #2
0
 public void GainPaddle(int amount = 1)
 {
     extraLives = amount;
     OnPaddleLost?.Invoke();
 }