1
0
Fork 0
forked from NotAShelf/rogged

audio: add item pickup sound

This commit is contained in:
A.M. Rowsell 2026-04-06 14:03:39 -04:00
commit 23dead8c0d
Signed by: amr
GPG key ID: E0879EDBDB0CA7B1
2 changed files with 2 additions and 0 deletions

Binary file not shown.

View file

@ -95,6 +95,8 @@ void audio_play_attack(void) {
void audio_play_item_pickup(void) {
// High-pitched pickup sound
play_tone(800.0f, 0.15f, 0.4f);
Sound pickup = LoadSound("./assets/sounds/itempickup.wav");
PlaySound(pickup);
}
void audio_play_enemy_death(void) {