Skip to content

Commit

Permalink
Re-export StopMode (#92)
Browse files Browse the repository at this point in the history
re-export StopMode
  • Loading branch information
GitGhillie authored Aug 25, 2024
1 parent 6f0d5a4 commit c0b1213
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 4 deletions.
1 change: 0 additions & 1 deletion examples/audio_control.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
use bevy::prelude::*;
use bevy_fmod::prelude::AudioSource;
use bevy_fmod::prelude::*;
pub use libfmod::StopMode;

fn main() {
App::new()
Expand Down
1 change: 0 additions & 1 deletion examples/minimal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
use bevy::prelude::*;
use bevy_fmod::prelude::AudioSource;
use bevy_fmod::prelude::*;
use libfmod::StopMode;

fn main() {
App::new()
Expand Down
1 change: 0 additions & 1 deletion examples/parameters.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
use bevy::prelude::*;
use bevy_fmod::prelude::AudioSource;
use bevy_fmod::prelude::*;
use libfmod::StopMode;

fn main() {
App::new()
Expand Down
1 change: 0 additions & 1 deletion examples/spatial.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
use bevy::prelude::*;
use bevy_fmod::prelude::AudioSource;
use bevy_fmod::prelude::*;
use libfmod::StopMode;

fn main() {
App::new()
Expand Down
1 change: 1 addition & 0 deletions src/prelude.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ pub use crate::components::bundles::SpatialListenerBundle;
pub use crate::components::velocity::Velocity;
pub use crate::fmod_plugin::FmodPlugin;
pub use crate::fmod_studio::FmodStudio;
pub use libfmod::StopMode;

0 comments on commit c0b1213

Please sign in to comment.