soloud 1.1.1

Rust bindings for the soloud audio engine
Documentation
1
2
3
4
5
6
7
8
9
10
use super::ParamType;
use crate::prelude::*;

/// FFT Filter
#[derive(Debug)]
pub struct FFTFilter {
    inner: *mut soloud_sys::soloud::FFTFilter,
}

crate::macros::filter::impl_filter_ext!(FFTFilter);