fix enable sfx

improve documentation.
This commit is contained in:
Robin Jones 2025-02-21 22:52:08 +00:00
parent 2452bc0373
commit 9bbee1e24a

View File

@ -52,16 +52,31 @@ void sound_init_sfx(void);
/**
* @brief Enable or disable sound effects.
*
* @param enable True to enable sound effects, false to disable.
*/
void sound_use_sfx(bool);
void sound_use_sfx(bool enable);
/**
* @brief Play a specified sound effect.
*
* @param sfx The sound effect to play, as defined in sound_effect_t.
*/
void sound_play_effect(sound_effect_t sfx);
void sound_deinit (void);
void sound_poll (void);
/**
* @brief Deinitialize the sound system.
*
* This function deinitializes the sound system, releasing any resources
* that were allocated.
*/
void sound_deinit(void);
/**
* @brief Poll the sound system.
*
* This function polls the sound system, updating its state as necessary.
*/
void sound_poll(void);
#endif /* SOUND_H__ */