public bool IsPlaying(string soundName) { ISound sound = FindSound(soundName); if (sound == null) { return(false); } else { return(sound.IsPlaying()); } }