summaryrefslogtreecommitdiff
path: root/engine/src/Clock.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engine/src/Clock.cpp')
-rw-r--r--engine/src/Clock.cpp19
1 files changed, 7 insertions, 12 deletions
diff --git a/engine/src/Clock.cpp b/engine/src/Clock.cpp
index 5261603..956f9c4 100644
--- a/engine/src/Clock.cpp
+++ b/engine/src/Clock.cpp
@@ -9,23 +9,18 @@ namespace engine
{
-float
-Clock::dt() const
+Clock::Clock()
{
- return GetFrameTime() * time_factor;
+ update();
}
-float
-Clock::ui() const
+void
+Clock::update()
{
- return GetFrameTime();
-}
-
-
-Clock::operator float() const
-{
- return dt();
+ ui = GetFrameTime();
+ dt = ui * time_factor;
+ game += dt;
}