wip: refactor pt.21: 48 errors

This commit is contained in:
🪞👃🪞 2024-11-13 17:43:46 +01:00
parent 2188bccd63
commit b8708d6b2d
15 changed files with 313 additions and 355 deletions

View file

@ -1,6 +1,6 @@
use crate::*;
pub struct ArrangerAudio(pub Arc<RwLock<Arrangement>>);
pub struct ArrangerAudio(pub Arc<RwLock<ArrangerModel>>);
impl Audio for ArrangerAudio {
#[inline] fn process (&mut self, client: &Client, scope: &ProcessScope) -> Control {
@ -8,7 +8,7 @@ impl Audio for ArrangerAudio {
}
}
pub struct ArrangerRefAudio<'a>(pub &'a mut Arrangement);
pub struct ArrangerRefAudio<'a>(pub &'a mut ArrangerModel);
impl<'a> Audio for ArrangerRefAudio<'a> {
#[inline] fn process (&mut self, client: &Client, scope: &ProcessScope) -> Control {