thunderbrew/src/sound/SI2.cpp
2023-01-02 13:17:18 -06:00

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
);
}
}