transport toolbar docs and cleanup

This commit is contained in:
🪞👃🪞 2024-10-19 23:36:10 +03:00
parent b3db10607a
commit 5671e19910
2 changed files with 26 additions and 13 deletions

View file

@ -0,0 +1,7 @@
use crate::*;
impl<E: Engine> Audio for TransportToolbar<E> {
fn process (&mut self, _: &Client, scope: &ProcessScope) -> Control {
self.update(&scope);
Control::Continue
}
}