| 1624 | return value; |
| 1625 | } |
| 1626 | void jjPLAYER::timerFunction(const String& functionName) { |
| 1627 | noop(); |
| 1628 | asIScriptFunction* func = _levelScriptLoader->GetMainModule()->GetFunctionByName(String::nullTerminatedView(functionName).data()); |
| 1629 | _timerCallback = func; |
| 1630 | } |
| 1631 | void jjPLAYER::timerFunctionPtr(void* function) { |
| 1632 | noop(); |
| 1633 | _timerCallback = function; |
nothing calls this directly
no test coverage detected