This commit is contained in:
Eric Rosenbaum 2017-01-10 18:04:01 -05:00
parent c54fc0f154
commit e2255bbbbf

View file

@ -43,8 +43,10 @@ function AudioEngine () {
// global tempo in bpm (beats per minute)
this.currentTempo = 60;
// instrument player for play note blocks
this.instrumentPlayer = new InstrumentPlayer(this.input);
// drum player for play drum blocks
this.drumPlayer = new DrumPlayer(this.input);
}