| 453 | } |
| 454 | |
| 455 | static void TimerDeleteScriptWorld(HScriptWorld script_world) |
| 456 | { |
| 457 | assert(script_world != 0x0); |
| 458 | HTimerWorld timer_world = GetTimerWorld(script_world); |
| 459 | if (timer_world != 0x0) |
| 460 | { |
| 461 | SetTimerWorld(script_world, 0x0); |
| 462 | DeleteTimerWorld(timer_world); |
| 463 | } |
| 464 | } |
| 465 | |
| 466 | static void TimerUpdateScriptWorld(HScriptWorld script_world, float dt) |
| 467 | { |
nothing calls this directly
no test coverage detected