getSoundInfo() public method

public getSoundInfo ( string key, SOUND_INFO &info ) : RESULT
key string
info SOUND_INFO
return RESULT
Ejemplo n.º 1
0
        public SoundInfo GetSoundInfo(string key)
        {
            SOUND_INFO info;

            _system.getSoundInfo(key, out info).Check();
            return(new SoundInfo(info));
        }