| 464 | } |
| 465 | |
| 466 | static void TimerUpdateScriptWorld(HScriptWorld script_world, float dt) |
| 467 | { |
| 468 | assert(script_world != 0x0); |
| 469 | HTimerWorld timer_world = GetTimerWorld(script_world); |
| 470 | if (timer_world != 0x0) |
| 471 | { |
| 472 | UpdateTimers(timer_world, dt); |
| 473 | } |
| 474 | } |
| 475 | |
| 476 | static void TimerInitializeScriptInstance(HScriptWorld script_world) |
| 477 | { |
nothing calls this directly
no test coverage detected