mirror of
				https://github.com/Zelda64Recomp/Zelda64Recomp.git
				synced 2025-10-30 08:03:03 +00:00 
			
		
		
		
	 91db87632c
			
		
	
	
		91db87632c
		
			
		
	
	
	
	
		
			
			Integrates the modding functionality in N64ModernRuntime and adds several exported functions for mods to use. Also adds a ROM decompressor so that the runtime has access to the uncompressed code in the ROM for hooking purposes.
		
			
				
	
	
		
			14 lines
		
	
	
	
		
			271 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			271 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef __ZELDA_GAME_H__
 | |
| #define __ZELDA_GAME_H__
 | |
| 
 | |
| #include <cstdint>
 | |
| #include <span>
 | |
| #include <vector>
 | |
| 
 | |
| namespace zelda64 {
 | |
|     void quicksave_save();
 | |
|     void quicksave_load();
 | |
|     std::vector<uint8_t> decompress_mm(std::span<const uint8_t> compressed_rom);
 | |
| };
 | |
| 
 | |
| #endif
 |