summaryrefslogtreecommitdiffhomepage
path: root/editor/editor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'editor/editor.hpp')
-rw-r--r--editor/editor.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/editor/editor.hpp b/editor/editor.hpp
index 2d215a42..7cd8a72c 100644
--- a/editor/editor.hpp
+++ b/editor/editor.hpp
@@ -76,6 +76,8 @@ struct editor final
tile_editor& floor() noexcept { return _floor; }
const tile_editor& floor() const noexcept { return _floor; }
+ tile_editor& wall() noexcept { return _wall; }
+ const tile_editor& wall() const noexcept { return _wall; }
tile_editor* current();
const tile_editor* current() const;
@@ -95,6 +97,7 @@ struct editor final
private:
tile_editor _floor{ editor_mode::floor, "floor"};
+ tile_editor _wall{ editor_mode::floor, "wall"};
std::optional<global_coords> _last_pos;
editor_mode _mode = editor_mode::select;
bool _dirty = false;