| 251 | , _duration(0) { } |
| 252 | |
| 253 | bool SystemTimerBase::isRunning() const noexcept { |
| 254 | return _time < _duration; |
| 255 | } |
| 256 | |
| 257 | bool SystemTimerBase::update(double deltaTime) { |
| 258 | _time += s_cast<float>(deltaTime); |
no outgoing calls
no test coverage detected