Пример #1
0
 public void reduce_live(int reducer)
 {
     lives_left -= reducer;
     if (lives_left < 0)
     {
         game_Manager.End_Game();
         Destroy(gameObject);
     }
 }