From 1ee3e43821a89f8f0d2e61c60d9e14bca944cc1c Mon Sep 17 00:00:00 2001 From: RGGH Date: Thu, 14 Nov 2024 20:15:07 +0000 Subject: [PATCH] pre-cat-collision --- src/main.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index e6e15db..3318418 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,10 +5,8 @@ use rand::Rng; use std::time::Instant; use image_utils::{convert_to_mono, draw_raindrop, draw_square, is_collision}; -use sound_utils::play_embedded_sound; mod image_utils; -mod sound_utils; const SQUARE_SIZE: u32 = 40; const SQUARE_SIZE_STEP: u32 = 5; @@ -34,7 +32,6 @@ enum Background<'a> { } fn main() { - let _ = play_embedded_sound(); let mut score = 0; let mut _current_background = Background::Mono(&[]); // Start with mono background