Play() public method

public Play ( bool restart ) : void
restart bool
return void
Beispiel #1
0
 public override void Play(bool restart = true)
 {
     if (_player != null)
     {
         _player.Play(true);
     }
     base.Play(restart);
 }
Beispiel #2
0
 private void MapSelect_Show(object sender, EventArgs e)
 {
     player = new AudioPlayer(bgstream);
     player.Play(true);
 }