コード例 #1
0
ファイル: song.cs プロジェクト: mayomatsuda/prodbox
 public void setInstruments(track newInstruments)
 {
     theInstruments = newInstruments;
     if (!(bpmSet))
     {
         songBPM = newInstruments.getBPM();
         bpmSet  = true;
     }
 }
コード例 #2
0
ファイル: song.cs プロジェクト: mayomatsuda/prodbox
 public void setBass(track newBass)
 {
     theBass = newBass;
     if (!(bpmSet))
     {
         songBPM = newBass.getBPM();
         bpmSet  = true;
     }
 }
コード例 #3
0
ファイル: song.cs プロジェクト: mayomatsuda/prodbox
 public void setDrums(track newDrums)
 {
     theDrums = newDrums;
     if (!(bpmSet))
     {
         songBPM = newDrums.getBPM();
         bpmSet  = true;
     }
 }
コード例 #4
0
ファイル: song.cs プロジェクト: mayomatsuda/prodbox
 public void setVocals(track newVocals)
 {
     theVocals = newVocals;
     if (!(bpmSet))
     {
         songBPM = newVocals.getBPM();
         bpmSet  = true;
     }
 }