//! Components used for integrating FMOD in a Bevy application.
//!
//! The components provided in this module are essential for implementing spatial audio functionality,
//! including audio sources, listeners, and velocity. These components can be used individually or
//! grouped together using bundles for easier management.
pub use AudioListener;
pub use AudioSource;
pub use Velocity;