summaryrefslogtreecommitdiff
path: root/scenes/background_music.gd
diff options
context:
space:
mode:
Diffstat (limited to 'scenes/background_music.gd')
-rw-r--r--scenes/background_music.gd12
1 files changed, 12 insertions, 0 deletions
diff --git a/scenes/background_music.gd b/scenes/background_music.gd
index 3fb62c8..e2622ae 100644
--- a/scenes/background_music.gd
+++ b/scenes/background_music.gd
@@ -2,3 +2,15 @@ extends Node
func _on_AudioStreamPlayer_finished():
$Sound1.play()
+
+func bullet_sound():
+ $Bullet.play()
+
+func hover_sound():
+ $Hover.play()
+
+func click_sound():
+ $Click.play()
+
+func type_sound():
+ $Type.play()