summaryrefslogtreecommitdiff
path: root/engine/include
diff options
context:
space:
mode:
authorAki <please@ignore.pl>2023-02-10 23:47:39 +0100
committerAki <please@ignore.pl>2023-02-10 23:47:39 +0100
commitd6687be6a89ebd55fa9f3438d742bbf9cf4c9afa (patch)
tree943ec88bc6ef910af862328a82ff8251f6474b88 /engine/include
parentb6f4678d6466e2b16f32d4fd350b10af5720dd11 (diff)
downloadkurator-d6687be6a89ebd55fa9f3438d742bbf9cf4c9afa.zip
kurator-d6687be6a89ebd55fa9f3438d742bbf9cf4c9afa.tar.gz
kurator-d6687be6a89ebd55fa9f3438d742bbf9cf4c9afa.tar.bz2
Created scaled Clock for consistent access to update times
Diffstat (limited to 'engine/include')
-rw-r--r--engine/include/kurator/engine/Clock.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/engine/include/kurator/engine/Clock.h b/engine/include/kurator/engine/Clock.h
new file mode 100644
index 0000000..4e5e7b1
--- /dev/null
+++ b/engine/include/kurator/engine/Clock.h
@@ -0,0 +1,20 @@
+#pragma once
+
+
+namespace kurator
+{
+namespace engine
+{
+
+
+struct Clock
+{
+ float time_factor = 1.0f;
+ float dt() const;
+ float ui() const;
+ operator float() const;
+};
+
+
+} // namespace engine
+} // namespace kurator