public void Handle(AudioBackgroundPause message)
        {
            this.log.Information("Pause audio BG");

            if (this.currentBgChannel.HasValue)
            {
                var chn = this.currentBgChannel.Value;
                chn.Pause = true;
            }

            this.backgroundAudioPlaying = false;
        }
Beispiel #2
0
        public void Handle(AudioBackgroundPause message)
        {
            this.log.Info("Pause audio BG");

            if (this.currentBgChannel.HasValue)
            {
                var chn = this.currentBgChannel.Value;
                chn.Pause = true;
            }
        }
 public void Handle(AudioBackgroundPause message)
 {
     this.main.Handle(message);
 }
 public void Handle(AudioBackgroundPause message)
 {
     this.main.Handle(message);
 }