mirror of
				https://github.com/Zelda64Recomp/Zelda64Recomp.git
				synced 2025-10-30 08:03:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			274 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			12 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
 | 
