MCPcopy Create free account
hub / github.com/WolfireGames/overgrowth / CanGoBack

Method CanGoBack

Source/GUI/scriptable_ui.cpp:116–126  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

114}
115
116bool ScriptableUI::CanGoBack() {
117 ASArg ret;
118 asBYTE retvalue;
119 ret.type = _as_bool;
120 ret.data = &retvalue;
121 ASArglist args;
122
123 as_context->CallScriptFunction(as_funcs.can_go_back, &args, &ret);
124
125 return retvalue;
126}
127
128void ScriptableUI::Dispose() {
129 ModLoading::Instance().DeRegisterCallback(this);

Callers 1

ScriptableUICallbackMethod · 0.80

Calls 1

CallScriptFunctionMethod · 0.45

Tested by

no test coverage detected