internal
| 1570 | |
| 1571 | // internal |
| 1572 | asCScriptFunction *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 |
no test coverage detected