diff options
Diffstat (limited to 'src/instrument.h')
-rw-r--r-- | src/instrument.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/instrument.h b/src/instrument.h index 41fe886..4076b48 100644 --- a/src/instrument.h +++ b/src/instrument.h @@ -42,6 +42,7 @@ class Instrument { friend class InstrumentParser; + friend class DrumKitParser; public: Instrument(Settings& settings, Random& rand); ~Instrument(); @@ -78,6 +79,7 @@ private: void finalise(); ///< Signal instrument that no more samples will be added. std::vector<Sample*> samplelist; + std::vector<InstrumentChannel> instrument_channels; size_t lastpos; float mod; |