Example #1
0
 public SongQueue(LibraryBrowser browser)
 {
     queue        = new Queue <Song>();
     this.browser = browser;
     randomizer   = new Randomizer(browser);
 }
Example #2
0
 public LocalSongLibrary(LibraryBrowser libraryBrowser)
 {
     this.libraryBrowser = libraryBrowser;
 }
Example #3
0
 public Player(LibraryBrowser browser)
 {
     Queue = new SongQueue(browser);
 }
Example #4
0
 public Randomizer(LibraryBrowser library)
 {
     this.library = library;
     usedSongs    = new Queue <Song>(10);
 }