| 136 | } |
| 137 | |
| 138 | S32 ScriptTimerMan::startTimer() |
| 139 | { |
| 140 | PlatformTimer *timer = PlatformTimer::create(); |
| 141 | mTimers.insert( smNextId, timer ); |
| 142 | smNextId++; |
| 143 | return ( smNextId - 1 ); |
| 144 | } |
| 145 | |
| 146 | S32 ScriptTimerMan::stopTimer( S32 id ) |
| 147 | { |
no test coverage detected