bevy_fmod/utilities/
mod.rs

1//! # Utilities
2//!
3//! Collection of useful plugins, components or systems that are not part of the FMOD API but help
4//! when developing bevy games with FMOD.
5
6mod mute_when_unfocused;
7
8#[doc(inline)]
9pub use mute_when_unfocused::MuteWhenUnfocused;