synthizer 0.5.6

bindings to Synthizer, a library for 3D audio and effects
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![allow(unused_imports)]
pub(crate) use std::any::Any;
pub(crate) use std::marker::PhantomData;
pub(crate) use std::ptr::{null, null_mut};
pub(crate) use std::sync::Arc;

pub(crate) use synthizer_sys::*;

pub(crate) use {
    crate::casting::*, crate::errors::*, crate::handle::Handle,
    crate::initialization::with_witness, crate::properties::*, crate::userdata::*, crate::*,
};