mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 08:12:44 +03:00
15 lines
393 B
C++
15 lines
393 B
C++
#include "ui/game/CGVideoOptions.hpp"
|
|
|
|
void CGVideoOptions::RegisterScriptFunctions() {
|
|
for (int32_t i = 0; i < NUM_SCRIPT_FUNCTIONS_VIDEO_OPTIONS; i++) {
|
|
FrameScript_RegisterFunction(
|
|
CGVideoOptions::s_ScriptFunctions[i].name,
|
|
CGVideoOptions::s_ScriptFunctions[i].method
|
|
);
|
|
}
|
|
}
|
|
|
|
void CGVideoOptions::UnregisterScriptFunctions() {
|
|
// TODO
|
|
}
|