Ejemplo n.º 1
0
 public void Play(Audio.Player player)
 {
     if (player is IMidiPlayer)
     {
         (player as IMidiPlayer).Play(this, true);
     }
 }
Ejemplo n.º 2
0
        public Audio.Player GetMidiPlayer()
        {
            if (player == null)
            {
                player = new Bass.MidiPlayer(dataSource);
            }

            return(player);
        }