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

@@ -35,4 +35,5 @@ class Synth {
const bool& GetIsNoteTriggered() { return is_note_triggered; }
ADSR* GetADSR() { return (ADSR*)m_effects[0]; }
Filter* GetFilter() { return (Filter*)m_effects[1]; }
void SetFilter(FilterType type);
};