summary refs log tree commit diff stats
path: root/tools/mapedit/src/world.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2015-03-16 16:59:59 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2015-03-16 16:59:59 -0400
commitd7d8653224ec7997bc4f281052fbfb05dc5b4577 (patch)
tree606ad88017409c27b1f47684d186957260830456 /tools/mapedit/src/world.h
parent0d30e9b57229905f78e7bd60fe5d3cde72851f28 (diff)
downloadtherapy-d7d8653224ec7997bc4f281052fbfb05dc5b4577.tar.gz
therapy-d7d8653224ec7997bc4f281052fbfb05dc5b4577.tar.bz2
therapy-d7d8653224ec7997bc4f281052fbfb05dc5b4577.zip
Map editor now remembers last map you looked at
Diffstat (limited to 'tools/mapedit/src/world.h')
-rw-r--r--tools/mapedit/src/world.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/mapedit/src/world.h b/tools/mapedit/src/world.h index 7d796cc..c30f4b4 100644 --- a/tools/mapedit/src/world.h +++ b/tools/mapedit/src/world.h
@@ -29,6 +29,7 @@ class World {
29 void setParent(MapeditFrame* parent); 29 void setParent(MapeditFrame* parent);
30 void save(std::string filename, wxTreeCtrl* mapTree); 30 void save(std::string filename, wxTreeCtrl* mapTree);
31 Map* getLastMap() const; 31 Map* getLastMap() const;
32 void setLastMap(Map* map);
32 std::list<std::shared_ptr<Map>> getRootMaps() const; 33 std::list<std::shared_ptr<Map>> getRootMaps() const;
33 const std::map<int, std::shared_ptr<Map>> getMaps() const; 34 const std::map<int, std::shared_ptr<Map>> getMaps() const;
34 35