initial commit

This commit is contained in:
2026-07-23 09:09:59 +02:00
commit 95225b3ed8
14 changed files with 6779 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
pub struct SfxEngine;
impl SfxEngine {
pub fn new() -> Self {
Self
}
pub fn play_sound(&self, effect_id: &str) {
// TODO(Phase 3): echte Wiedergabe via bevy_audio; bislang nur Log-Ausgabe.
println!("Playing SFX: {}", effect_id);
}
}