diff --git a/src/index.js b/src/index.js index c078f0d..8c9d8ee 100644 --- a/src/index.js +++ b/src/index.js @@ -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); }