mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2025-12-12 11:12:29 +00: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
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|