phonic 0.16.0

Audio playback library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// -------------------------------------------------------------------------------------------------

mod effect;
mod file;
mod generator;
mod mixer;
mod source;
mod synth;

// -------------------------------------------------------------------------------------------------

pub use effect::EffectHandle;
pub use file::FilePlaybackHandle;
pub use generator::GeneratorPlaybackHandle;
pub use mixer::MixerHandle;
pub use source::SourcePlaybackHandle;
pub use synth::SynthPlaybackHandle;