From 12143c33141a9c35e8eb01609062655f560b4bc1 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Thu, 14 Dec 2017 12:43:17 +0100 Subject: Get rid of all the time parameters in game. --- src/common.hpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/common.hpp') diff --git a/src/common.hpp b/src/common.hpp index 8a86482..2d2af4a 100644 --- a/src/common.hpp +++ b/src/common.hpp @@ -183,14 +183,13 @@ namespace game { class unit_t; class state_t { - double now, dt; - std::unordered_set units; std::unordered_set selected_units; std::unordered_set awake_units; public: world::world_t world; + double now, dt; void start(void); void stop(void); -- cgit