Esempio n. 1
0
        public static void Mute(bool muted)
        {
            isMuted = muted;

            foreach (int c in channelIDs)
            {
                system.getChannel(c, ref channel);
                channel.setMute(muted);
            }
        }