============ idVarDef::SetObject ============ */
| 651 | ============ |
| 652 | */ |
| 653 | void idVarDef::SetObject( idScriptObject *object ) { |
| 654 | assert( typeDef ); |
| 655 | initialized = initialized; |
| 656 | assert( typeDef->Inherits( &type_object ) ); |
| 657 | *value.objectPtrPtr = object; |
| 658 | } |
| 659 | |
| 660 | /* |
| 661 | ============ |
no test coverage detected