1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
mod bass;
mod biquad;
mod dc;
mod echo;
mod fft;
mod flanger;
mod freeverb;
mod lofi;
mod robotize;
mod waveshaper;

pub use bass::*;
pub use biquad::*;
pub use dc::*;
pub use echo::*;
pub use fft::*;
pub use flanger::*;
pub use freeverb::*;
pub use lofi::*;
pub use robotize::*;
pub use waveshaper::*;

#[repr(u32)]
#[derive(Copy, Clone, Debug, PartialEq, PartialOrd)]
pub enum ParamType {
    Float = 0,
    Int,
    Bool,
}