23 lines
480 B
C++
23 lines
480 B
C++
/*
|
|
==============================================================================
|
|
|
|
NeuralSharedParams.h
|
|
Created: 21 Jun 2025 7:53:02am
|
|
Author: timot
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <atomic>
|
|
|
|
struct NeuralSharedParams
|
|
{
|
|
std::atomic<int> waveform{ -1 };
|
|
|
|
std::atomic<float>* attack;
|
|
std::atomic<float>* decay;
|
|
std::atomic<float>* sustain;
|
|
std::atomic<float>* release;
|
|
}; |