reVeno/Source/Veno/Audio/Synth/SynthInstance.cpp
versustunez ac22ea5e75 - reformat to JUCE-Guidelines
- added Matrix => half working ;)
2020-06-13 16:52:16 +02:00

12 lines
195 B
C++

//
// Created by versustune on 09.06.20.
//
#include "SynthInstance.h"
#include <utility>
SynthInstance::SynthInstance (std::string processId)
: m_processId (std::move (processId))
{
}