summaryrefslogtreecommitdiff
path: root/src/audio/rodio.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/audio/rodio.rs')
-rw-r--r--src/audio/rodio.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/audio/rodio.rs b/src/audio/rodio.rs
new file mode 100644
index 0000000..04883dd
--- /dev/null
+++ b/src/audio/rodio.rs
@@ -0,0 +1,9 @@
+use super::AudioBackend;
+
+pub struct Rodio {}
+
+impl AudioBackend for Rodio {
+ fn play(&self, _url: &str) {
+ todo!()
+ }
+}