reVeno/Source/Veno/Audio/Engine/ModulateValue.cpp

22 lines
294 B
C++
Raw Normal View History

//
// Created by versustune on 13.06.20.
//
#include "ModulateValue.h"
ModulateValue::ModulateValue (const std::string& name, const std::string& processId)
{
m_name = name;
m_processId = processId;
}
void ModulateValue::addValue (float d)
{
}
ModulateValue::~ModulateValue ()
{
}