예제 #1
0
        public void ResumeSound(string soundName)
        {
            ISound sound = FindSound(soundName);

            if (sound != null)
            {
                sound.Resume();
            }
        }