diff options
Diffstat (limited to 'src/common.hpp')
-rw-r--r-- | src/common.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common.hpp b/src/common.hpp index 44493eb..f89ae08 100644 --- a/src/common.hpp +++ b/src/common.hpp @@ -176,12 +176,15 @@ namespace game { class state_t { double now; + + std::unordered_set<unit_t*> units; std::unordered_set<unit_t*> selected_units; public: world::world_t world; void start(void); + void stop(void); void tick(double now_); // These are called by the interface. |