diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/zvision/utility/clock.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/zvision/utility/clock.h b/engines/zvision/utility/clock.h index 9a50116a8c..cbf52be560 100644 --- a/engines/zvision/utility/clock.h +++ b/engines/zvision/utility/clock.h @@ -47,6 +47,7 @@ public: * when the last update() was called. */ void update(); + /** * Get the delta time since the last frame. (The time between update() calls) * @@ -55,6 +56,7 @@ public: uint32 getDeltaTime() const { return _deltaTime; } + /** * Get the time from the program starting to the last update() call * @@ -69,6 +71,7 @@ public: * Has no effect if the clock is already paused. */ void start(); + /** * Un-pause the clock. * Has no effect if the clock is already un-paused. |