diff options
| author | Dominik Kaiser | 2025-10-06 12:52:57 +0200 |
|---|---|---|
| committer | Dominik Kaiser | 2025-10-06 12:52:57 +0200 |
| commit | 1861458f4fa4647379d372858222d6481beaa015 (patch) | |
| tree | 556b9215b2715ab962891d44d93affab0bd1b6b3 /src/PluginProcessor.h | |
| parent | 282f670fe24bb772e1eb2929e1cb4c58ca3ad166 (diff) | |
| download | SchroederReverb-1861458f4fa4647379d372858222d6481beaa015.tar.gz SchroederReverb-1861458f4fa4647379d372858222d6481beaa015.zip | |
Add dry/wet mix slider
Diffstat (limited to 'src/PluginProcessor.h')
| -rw-r--r-- | src/PluginProcessor.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/PluginProcessor.h b/src/PluginProcessor.h index ed9ae5f..27203ca 100644 --- a/src/PluginProcessor.h +++ b/src/PluginProcessor.h @@ -6,6 +6,8 @@ //============================================================================== class SchroederReverbAudioProcessor final : public juce::AudioProcessor { + friend class SchroederReverbAudioProcessorEditor; + public: //============================================================================== SchroederReverbAudioProcessor(); @@ -46,5 +48,6 @@ class SchroederReverbAudioProcessor final : public juce::AudioProcessor private: //============================================================================== SchroederReverb schroederReverb; + juce::AudioParameterFloat* dryWetMix; JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR(SchroederReverbAudioProcessor) }; |
