mirror of
https://github.com/Mr-Wiseguy/Zelda64Recomp.git
synced 2024-11-07 15:15:05 +01:00
13 lines
274 B
C
13 lines
274 B
C
|
#ifndef __RECOMP_SOUND_H__
|
||
|
#define __RECOMP_SOUND_H__
|
||
|
|
||
|
namespace recomp {
|
||
|
void reset_sound_settings();
|
||
|
void set_bgm_volume(int volume);
|
||
|
int get_bgm_volume();
|
||
|
void set_low_health_beeps_enabled(bool enabled);
|
||
|
bool get_low_health_beeps_enabled();
|
||
|
}
|
||
|
|
||
|
#endif
|