//! Audio playback, synthesis, and spatial emitter support.
//!
//! Headed applications normally install [`audio_system::DefaultAudioSystem`]
//! through [`crate::application::graphics::setup_default_audio`]. Implement
//! [`generator::Generator`] for procedural or streamed audio, or
//! [`synthesizer::Synthesizer`] when producing samples from a synthesizer model.
//! [`emitter::Emitter`] connects generated sound to a position in the game world.
pub use ;
pub use Emitter;
pub use ;
pub use RoundRobin;
pub use Sound;
pub use Source;
pub use Synthesizer;