Initial MVP

This commit is contained in:
Aodhan Collins
2026-01-26 02:57:40 +00:00
commit b42521a008
33 changed files with 1004 additions and 0 deletions

11
scripts/AudioManager.gd Normal file
View File

@@ -0,0 +1,11 @@
extends Node
# Load streams here
# var sfx_hit = preload("res://assets/hit.wav")
func play_hit():
# if sfx_hit: play(sfx_hit)
print("Audio: Hit SFX")
func play_music():
print("Audio: Music Started")