diff options
Diffstat (limited to 'player.c')
-rw-r--r-- | player.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -6,6 +6,7 @@ #include "game_config.h" #include "input.h" #include "player.h" +#include "sound.h" #include "standard.h" #include "world.h" @@ -132,6 +133,8 @@ void update_player(Player* player, World* world) { 100 ); + play_beep(30, 1000); + player->shoot_countdown = player->shoot_cooldown; } |