feat: filter type input

This commit is contained in:
2023-09-10 01:02:22 +04:00
parent 576cf8e3b5
commit de37b814bf
10 changed files with 73 additions and 6 deletions

View File

@@ -2,6 +2,7 @@
#include "OscillatorType.h"
#include "raygui.h"
#include <vector>
#include "Filter.h"
struct OscillatorGuiState {
float volume;
@@ -20,8 +21,9 @@ struct ADSRGuiState {
struct FilterGuiState {
float freq;
float res;
//todo: type
float res; //todo: res
FilterType type;
bool is_dropdown_open;
};
struct SynthGuiState {