func_event_waittimer.rst 452 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .. _func_event_waittimer:
  2. =========
  3. WaitTimer
  4. =========
  5. WaitTimer -
  6. Description
  7. ===========
  8. .. code-block:: blitzmax
  9. WaitTimer( timer:TTimer )
  10. Wait until a timer ticks
  11. Parameters
  12. ==========
  13. Return Values
  14. =============
  15. The number of ticks since the last call to #WaitTimer
  16. Examples
  17. ========
  18. .. code-block:: blitzmax
  19. timer=CreateTimer( 10 )
  20. Repeat
  21. Print "Ticks="+WaitTimer( timer )
  22. Forever
  23. See Also
  24. ========