| 179 | } |
| 180 | |
| 181 | static Timer* GetTimerFromIndex(HTimerWorld timer_world, uint16_t index) |
| 182 | { |
| 183 | assert(timer_world != 0x0); |
| 184 | if (!timer_world->m_Instances.Contains(index)) |
| 185 | { |
| 186 | return 0; |
| 187 | } |
| 188 | return &timer_world->m_Timers.Get(index); |
| 189 | } |
| 190 | |
| 191 | static Timer* GetTimerFromHandle(HTimerWorld timer_world, HTimer handle) |
| 192 | { |
no test coverage detected