public List <ISoundChannel> GetChannelsFromSoundGroup(SoundGroups sg) { List <ISoundChannel> retChannels = new List <ISoundChannel>(); foreach (var channel in AllChannels) { if (channel is SoundChannel && channel.CurrentSoundResource != null) { if (((SoundResource)channel.CurrentSoundResource).SoundGroupEnum == sg) { retChannels.Add(channel); } } } return(retChannels); }
public ISoundGroup GetSoundGroup(SoundGroups sg) { return new DummySoundGroup(); }
public List<ISoundChannel> GetChannelsFromSoundGroup(SoundGroups sg) { return new List<ISoundChannel>(); }
public ISoundGroup GetSoundGroup(SoundGroups sg) { return soundGroups[sg]; }
public List<ISoundChannel> GetChannelsFromSoundGroup(SoundGroups sg) { List<ISoundChannel> retChannels = new List<ISoundChannel>(); foreach (var channel in AllChannels) { if (channel is SoundChannel && channel.CurrentSoundResource != null) { if (((SoundResource)channel.CurrentSoundResource).SoundGroupEnum == sg) retChannels.Add(channel); } } return retChannels; }
public List <ISoundChannel> GetChannelsFromSoundGroup(SoundGroups sg) { return(new List <ISoundChannel>()); }
public ISoundGroup GetSoundGroup(SoundGroups sg) { return(new DummySoundGroup()); }
public ISoundGroup GetSoundGroup(SoundGroups sg) { return(soundGroups[sg]); }