* Starts the timer running and counting time. */
| 65 | * Starts the timer running and counting time. |
| 66 | */ |
| 67 | void Timer::start() |
| 68 | { |
| 69 | _frameSkipStart = _start = slowTick(); |
| 70 | _running = true; |
| 71 | } |
| 72 | |
| 73 | /** |
| 74 | * Stops the timer from running. |
no test coverage detected