Exemplo n.º 1
0
 public AudioPlayer(List <string> playList)
 {
     PlayList       = playList;
     _state         = new AudioPlayerReadyState(this);
     _userInterface = new AudioPlayerUserInterface(this);
 }
Exemplo n.º 2
0
 public void ChangeState(AudioPlayerState state)
 {
     this._state = state;
 }
Exemplo n.º 3
0
 public AudioPlayer()
 {
     _state         = new AudioPlayerReadyState(this);
     _userInterface = new AudioPlayerUserInterface(this);
 }