12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- Clock - Keeps track of time
- ---------------------------
- .. rubric:: Constructor
- .. class:: Clock(autoStart)
- //todo:description
- .. rubric:: Attributes
- .. attribute:: Clock.autoStart
- //todo:description
- .. attribute:: Clock.startTime
- //todo:description
- .. attribute:: Clock.oldTime
- //todo:description
- .. attribute:: Clock.elapsedTime
- //todo:description
- .. attribute:: Clock.running
- //todo:description
- .. rubric:: Methods
- .. function:: Clock.start()
- //todo:description
- .. function:: Clock.stop()
- //todo:description
- .. function:: Clock.getElapsedTime()
- //todo:description
- :returns: //todo
- :rtype: //todo
- .. function:: Clock.getDelta()
- //todo:description
- :returns: //todo
- :rtype: //todo
- .. rubric:: Example
|