Zelda64Recomp/include/recomp_sound.h
Parker 169155953e
Add main volume option to settings (#267)
* This commit adds the option to control the main volume game via a slider
added to the "Sound" tab in the settings menu.
2024-05-26 00:59:15 -04:00

15 lines
339 B
C++

#ifndef __RECOMP_SOUND_H__
#define __RECOMP_SOUND_H__
namespace recomp {
void reset_sound_settings();
void set_main_volume(int volume);
int get_main_volume();
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