A lot of pointless stuff
This commit is contained in:
15
engine/src/audio_engine/dummy_ab.rs
Normal file
15
engine/src/audio_engine/dummy_ab.rs
Normal 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!()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user