示例#1
0
        public bool IsPlaying(string soundName)
        {
            ISound sound = FindSound(soundName);

            if (sound == null)
            {
                return(false);
            }
            else
            {
                return(sound.IsPlaying());
            }
        }