summary refs log tree commit diff stats
path: root/src/simulation.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2019-02-24 12:50:55 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2019-02-24 12:50:55 -0500
commit41593f09b47537ccae1b19dc390f7d7dbb532937 (patch)
treed46962995230a1ad97e28af7606782da81d724a1 /src/simulation.h
parent90b9831d6fb89feedeec63cb392c4535c5df60fe (diff)
downloaddispatcher-41593f09b47537ccae1b19dc390f7d7dbb532937.tar.gz
dispatcher-41593f09b47537ccae1b19dc390f7d7dbb532937.tar.bz2
dispatcher-41593f09b47537ccae1b19dc390f7d7dbb532937.zip
Rendering of level map moved to Level class
Diffstat (limited to 'src/simulation.h')
-rw-r--r--src/simulation.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/simulation.h b/src/simulation.h index 1502a70..bb77806 100644 --- a/src/simulation.h +++ b/src/simulation.h
@@ -87,6 +87,8 @@ private:
87 std::vector<Entity> entities_; 87 std::vector<Entity> entities_;
88 std::deque<id_type> available_; 88 std::deque<id_type> available_;
89 std::set<id_type> active_; 89 std::set<id_type> active_;
90
91 texture_ptr renderedMap_;
90}; 92};
91 93
92#endif /* end of include guard: SIMULATION_H_7BF6EEA4 */ 94#endif /* end of include guard: SIMULATION_H_7BF6EEA4 */