Exemplo n.º 1
0
 public void StopPlaying()
 {
     if (IsPlaying())
     {
         PlayItem = null;
     }
 }
Exemplo n.º 2
0
 public void Play(PlayItem playItem)
 {
     StopPlaying();
     PlayItem = playItem;
     PlayItem.Play();
 }
Exemplo n.º 3
0
 public void Play(PlayItem playItem) => Player.Play(playItem);