============ idScriptObject::GetDestructor ============ */
| 1050 | ============ |
| 1051 | */ |
| 1052 | const function_t *idScriptObject::GetDestructor( void ) const { |
| 1053 | const function_t *func; |
| 1054 | |
| 1055 | func = GetFunction( "destroy" ); |
| 1056 | return func; |
| 1057 | } |
| 1058 | |
| 1059 | /* |
| 1060 | ============ |
no outgoing calls
no test coverage detected