A lot of pointless stuff
Some checks failed
ci/woodpecker/push/pre_commit_test Pipeline failed
ci/woodpecker/push/code_tests Pipeline failed

This commit is contained in:
2025-12-05 19:32:32 +01:00
parent 50ebac998c
commit 4810b19eea
10 changed files with 238 additions and 36 deletions

View File

@@ -0,0 +1,15 @@
use crate::audio_engine::AudioBackend;
struct DummyAudioBackend {}
impl DummyAudioBackend {
fn new() -> Self {
Self { }
}
}
impl AudioBackend for DummyAudioBackend {
fn start_client(&mut self) -> Result<(), Box<dyn std::error::Error>> {
todo!()
}
}