Timer
17 functions
- Timer_AddAdd the amount of time to the specified timer
- Timer_AdvanceAdvances the timer by the specified amount of time
- Timer_DisplayDisplay (in the console) the amount of time remaining in the specified timer.
- Timer_DisplayOnScreenDisplays a timer on the screen - You need to call this regularly (i.e. every second) to update the onscreen display. THIS IS A TEMPORARY FUNCTION - WELL GET PROPER UI SUPPORT LATER ON
- Timer_EndStop the specified timer.
- Timer_ExistsReturns whether the timer with this ID exists
- Timer_GetElapsedReturns how much time has elapsed since this timer has been started
- Timer_GetMinutesAndSecondsReturns TWO values: minutes and seconds. Provide it a function like Timer_GetRemaining or Timer_GetElapsed
- Timer_GetRemainingGet the remaining time for the specified timer.
- Timer_Init
- Timer_IsPausedCheck if the timer is paused.
- Timer_PausePause the specified timer.
- Timer_PauseAllTimers
- Timer_ResumeResume the specified timer.
- Timer_ResumeAllTimers
- Timer_StartStart a timer with the specified id, taking the required period ( in seconds )
- Timer_Validate