Ejemplo n.º 1
0
        public void Handle(AudioBackgroundResume message)
        {
            this.log.Information("Resume audio BG");

            if (this.currentBgChannel.HasValue)
            {
                var chn = this.currentBgChannel.Value;
                chn.Pause = false;
            }
            else
            {
                PlayNextBackground();
            }
            this.backgroundAudioPlaying = true;
        }
Ejemplo n.º 2
0
        public void Handle(AudioBackgroundResume message)
        {
            this.log.Info("Resume audio BG");

            if (this.currentBgChannel.HasValue)
            {
                var chn = this.currentBgChannel.Value;
                chn.Pause = false;
            }
            else
                PlayNextBackground();
        }
Ejemplo n.º 3
0
 public void Handle(AudioBackgroundResume message)
 {
     this.main.Handle(message);
 }
 public void Handle(AudioBackgroundResume message)
 {
     this.main.Handle(message);
 }