summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index b3c2e05..81b8585 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -1,3 +1,4 @@
+pub mod audio;
pub mod constants;
pub mod n1ck;
pub mod tom;
@@ -59,6 +60,10 @@ fn main() {
.unwrap()
.ignore_warnings();
+ // only uncomment if building as release 'cargo run --release'
+ //let mut stream = audio::init();
+ //stream.play();
+
let (mut tom, surface) = Tom::new(surface);
let (mut n1ck, mut surface) = N1ck::new(surface);