/**
  * Removes the given audio from the list of available audio clips.
  *
  * @param audioClip the audio to destroy
  */
 public void destroyAudio(SCAudioClip audioClip) {
   synchronized (audioClips) {
     audioClips.remove(audioClip);
   }
 }