gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

n2xArp.h (337B)


      1 #pragma once
      2 
      3 #include "n2xParameterDrivenLed.h"
      4 
      5 namespace n2xJucePlugin
      6 {
      7 	class Arp : ParameterDrivenLed
      8 	{
      9 	public:
     10 		explicit Arp(Editor& _editor);
     11 
     12 	protected:
     13 		bool updateToggleState(const pluginLib::Parameter* _parameter) const override;
     14 		void onClick(pluginLib::Parameter* _targetParameter, bool _toggleState) override;
     15 	};
     16 }