MCPcopy Create free account
hub / github.com/anjo76/angelscript / GetScriptFunction

Method GetScriptFunction

sdk/angelscript/source/as_scriptengine.cpp:1572–1578  ·  view source on GitHub ↗

internal

Source from the content-addressed store, hash-verified

1570
1571// internal
1572asCScriptFunction *asCScriptEngine::GetScriptFunction(int funcId) const
1573{
1574 if( funcId < 0 || funcId >= (int)scriptFunctions.GetLength() )
1575 return 0;
1576
1577 return scriptFunctions[funcId];
1578}
1579
1580
1581// interface

Callers 3

ReadTypeDeclarationMethod · 0.80
BindImportedFunctionMethod · 0.80
INSTRUCTIONFunction · 0.80

Calls 1

GetLengthMethod · 0.45

Tested by

no test coverage detected