Example #1
0
 // Pauses the current playing song.
 public static void PauseMusic()
 {
     if (currentSong != null)
     {
         currentSong.Pause();
     }
 }