/// Audio processing unit stub. Logging only for now. pub struct AudioSystem { pub enabled: bool, } impl AudioSystem { pub fn new() -> Self { Self { enabled: false } } } impl Default for AudioSystem { fn default() -> Self { Self::new() } }