public void setInstruments(track newInstruments) { theInstruments = newInstruments; if (!(bpmSet)) { songBPM = newInstruments.getBPM(); bpmSet = true; } }
public void setBass(track newBass) { theBass = newBass; if (!(bpmSet)) { songBPM = newBass.getBPM(); bpmSet = true; } }
public void setDrums(track newDrums) { theDrums = newDrums; if (!(bpmSet)) { songBPM = newDrums.getBPM(); bpmSet = true; } }
public void setVocals(track newVocals) { theVocals = newVocals; if (!(bpmSet)) { songBPM = newVocals.getBPM(); bpmSet = true; } }