Compare commits
2 Commits
c76591953a
...
323dfd4e09
| Author | SHA1 | Date | |
|---|---|---|---|
| 323dfd4e09 | |||
| 05a3ff88e1 |
24
state.h
Normal file
24
state.h
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <stdint.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include "vco.h"
|
||||||
|
|
||||||
|
typedef struct {
|
||||||
|
float clock_bpm;
|
||||||
|
float vco_freq;
|
||||||
|
vco_mode_t vco_mode;
|
||||||
|
float vco_volume;
|
||||||
|
bool quant_enabled;
|
||||||
|
float filter_freq;
|
||||||
|
float filter_resonance;
|
||||||
|
float env1_attack;
|
||||||
|
float env1_release;
|
||||||
|
float env2_attack;
|
||||||
|
float env2_release;
|
||||||
|
float reverb_amount;
|
||||||
|
bool amen_enabled;
|
||||||
|
} state_t;
|
||||||
|
|
||||||
|
extern state_t state;
|
||||||
|
|
||||||
Loading…
x
Reference in New Issue
Block a user