2025-02-17 18:59:37 +01:00
|
|
|
|
|
|
|
#include "delay.h"
|
|
|
|
#include "gate.h"
|
2025-02-20 16:36:10 +01:00
|
|
|
#include "sust.h"
|
2025-02-17 18:59:37 +01:00
|
|
|
|
|
|
|
struct FxData {
|
|
|
|
uint64_t last_tap;
|
|
|
|
struct delay delay;
|
|
|
|
struct sust sust;
|
|
|
|
struct gate gate;
|
|
|
|
|
|
|
|
unsigned prog;
|
|
|
|
|
|
|
|
//! elapsed time in number of samples
|
|
|
|
uint64_t time;
|
|
|
|
};
|