// Token: 0x060037E1 RID: 14305 RVA: 0x0018C528 File Offset: 0x0018A928
 public static void open(InteractableStereo newStereo)
 {
     if (PlayerBarricadeStereoUI.active)
     {
         PlayerBarricadeStereoUI.close();
         return;
     }
     PlayerBarricadeStereoUI.active = true;
     PlayerBarricadeStereoUI.stereo = newStereo;
     PlayerBarricadeStereoUI.refreshSongs();
     if (PlayerBarricadeStereoUI.stereo != null)
     {
         PlayerBarricadeStereoUI.volumeSlider.state = PlayerBarricadeStereoUI.stereo.volume;
     }
     PlayerBarricadeStereoUI.updateVolumeSliderLabel();
     PlayerBarricadeStereoUI.container.lerpPositionScale(0f, 0f, ESleekLerp.EXPONENTIAL, 20f);
 }