Exemplo n.º 1
0
        private void PlayNext()
        {
            if (PlayingActions.Count == 0)
            {
                OnFinishedPlaying();
                return;
            }

            var userAction = PlayingActions.Dequeue();

            Play(userAction);
        }
Exemplo n.º 2
0
 public void StopPlaying()
 {
     PlayingActions.Clear();
 }