usesuper::*;/// A dummy sound player which does nothing
pubstructSoundPlayer{}implSoundPlayer{pubfnnew(_base_volume: Volume)->anyhow::Result<Self>{Err(anyhow::anyhow!("Bacon is compiled without the sound feature"))}pubfnplay(&self,
_beep: PlaySoundCommand,
){// should never be called as the sound player is not instantiated
}}