Play() public méthode

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