================ idTrigger::CallScript ================ */
| 140 | ================ |
| 141 | */ |
| 142 | void idTrigger::CallScript( void ) const { |
| 143 | idThread *thread; |
| 144 | |
| 145 | if ( scriptFunction ) { |
| 146 | thread = new idThread( scriptFunction ); |
| 147 | thread->DelayedStart( 0 ); |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | /* |
| 152 | ================ |
nothing calls this directly
no test coverage detected