sound: added staircase descent sound as test

This commit is contained in:
A.M. Rowsell 2026-04-06 09:47:37 -04:00
commit d9c1ee9faa
Signed by: amr
GPG key ID: E0879EDBDB0CA7B1
2 changed files with 2 additions and 3 deletions

Binary file not shown.

View file

@ -94,9 +94,8 @@ void audio_play_player_damage(void) {
void audio_play_stairs(void) {
// Ascending stairs sound
play_tone(400.0f, 0.1f, 0.3f);
play_tone(600.0f, 0.1f, 0.3f);
play_tone(800.0f, 0.15f, 0.3f);
Sound staircase = LoadSound("./assets/sounds/levelcomplete.wav");
PlaySound(staircase);
}
void audio_play_dodge(void) {