aboutsummaryrefslogtreecommitdiff
path: root/src/game/game.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/game.hpp')
-rw-r--r--src/game/game.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/game.hpp b/src/game/game.hpp
index 1546a9c..fb2ad63 100644
--- a/src/game/game.hpp
+++ b/src/game/game.hpp
@@ -7,6 +7,7 @@
#include "interfaces/status_manager.hpp"
#include "interfaces/statusline_subscriber_adapter.hpp"
+#include <chrono>
#include <memory>
class Game : public IGame
@@ -36,4 +37,6 @@ private:
std::shared_ptr<IStatusManager> _status_manager;
IStatusLineSubscriberAdapterFactory<Vector2>
_vector2_statusline_subscriber_adapter_factory;
+
+ std::chrono::system_clock::time_point _last_update_time;
};