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