1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .. _func_event_waittimer:
- =========
- WaitTimer
- =========
- WaitTimer -
- Description
- ===========
- .. code-block:: blitzmax
- WaitTimer( timer:TTimer )
- Wait until a timer ticks
- Parameters
- ==========
- Return Values
- =============
- The number of ticks since the last call to #WaitTimer
- Examples
- ========
- .. code-block:: blitzmax
- timer=CreateTimer( 10 )
-
- Repeat
- Print "Ticks="+WaitTimer( timer )
- Forever
- See Also
- ========
|