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

@@ -11,4 +11,5 @@ class LowPassFilter : public Filter {
LowPassFilter(Filter* filter);
LowPassFilter(float freq, float res, float q);
~LowPassFilter();
bool IsSameFilterType(FilterType type) override { return type == LowPass; };
};