summary refs log tree commit diff stats
path: root/tools/mapedit/src/map.h
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2015-03-15 19:08:46 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2015-03-15 19:08:46 -0400
commitc125c1acc0b20c3e405dddb5c835d9734aa0472c (patch)
tree65d57aa9f4b0324506080210448fce212e407cc7 /tools/mapedit/src/map.h
parent91640f2f35d703898edb14abaae7dd63f5346027 (diff)
downloadtherapy-c125c1acc0b20c3e405dddb5c835d9734aa0472c.tar.gz
therapy-c125c1acc0b20c3e405dddb5c835d9734aa0472c.tar.bz2
therapy-c125c1acc0b20c3e405dddb5c835d9734aa0472c.zip
Added ability to edit title in map editor
Diffstat (limited to 'tools/mapedit/src/map.h')
-rw-r--r--tools/mapedit/src/map.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/mapedit/src/map.h b/tools/mapedit/src/map.h index 66e4596..45ec7e1 100644 --- a/tools/mapedit/src/map.h +++ b/tools/mapedit/src/map.h
@@ -49,6 +49,8 @@ class Map {
49 Map& operator= (Map other); 49 Map& operator= (Map other);
50 friend void swap(Map& first, Map& second); 50 friend void swap(Map& first, Map& second);
51 51
52 std::string getTitle() const;
53 void setTitle(std::string title);
52 void save(std::string name); 54 void save(std::string name);
53 bool hasUnsavedChanges() const; 55 bool hasUnsavedChanges() const;
54 void setTileAt(int x, int y, int tile); 56 void setTileAt(int x, int y, int tile);