| 335 | } |
| 336 | |
| 337 | void RegisterScriptMath(asIScriptEngine *engine) |
| 338 | { |
| 339 | if( strstr(asGetLibraryOptions(), "AS_MAX_PORTABILITY") ) |
| 340 | RegisterScriptMath_Generic(engine); |
| 341 | else |
| 342 | RegisterScriptMath_Native(engine); |
| 343 | } |
| 344 | |
| 345 | END_AS_NAMESPACE |
| 346 |
nothing calls this directly
no test coverage detected