Change interface SoundHandler type
This commit is contained in:
parent
dde6b8a73e
commit
f5a940c7ea
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,7 @@ pub trait ContextInterface: Send + Sync {
|
||||||
fn height(&self) -> u32;
|
fn height(&self) -> u32;
|
||||||
|
|
||||||
#[cfg(feature = "audio")]
|
#[cfg(feature = "audio")]
|
||||||
fn sound_handler(&self) -> &mut SoundHandler;
|
fn sound_handler(&self) -> std::sync::MutexGuard<'_, SoundHandler>;
|
||||||
}
|
}
|
||||||
|
|
||||||
pub enum TargetMode<T> {
|
pub enum TargetMode<T> {
|
||||||
|
|
Loading…
Reference in a new issue