mirror of
				https://github.com/thunderbrewhq/thunderbrew
				synced 2025-10-31 00:06:05 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			301 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			301 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "sound/SI2.hpp"
 | |
| #include "ui/FrameScript.hpp"
 | |
| 
 | |
| void SI2::RegisterScriptFunctions() {
 | |
|     for (int32_t i = 0; i < NUM_SCRIPT_FUNCTIONS_SI2; ++i) {
 | |
|         FrameScript_RegisterFunction(
 | |
|             SI2::s_ScriptFunctions[i].name,
 | |
|             SI2::s_ScriptFunctions[i].method
 | |
|         );
 | |
|     }
 | |
| }
 | 
