diff options
Diffstat (limited to 'editor/scenery-editor.hpp')
| -rw-r--r-- | editor/scenery-editor.hpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/editor/scenery-editor.hpp b/editor/scenery-editor.hpp index f4d0868f..8f2ea051 100644 --- a/editor/scenery-editor.hpp +++ b/editor/scenery-editor.hpp @@ -29,6 +29,11 @@ struct scenery_editor final bool is_item_selected(const scenery_& s) const; bool is_anything_selected() const; + auto cbegin() const noexcept { return _atlases.cbegin(); } + auto cend() const noexcept { return _atlases.cend(); } + auto begin() const noexcept { return _atlases.cbegin(); } + auto end() const noexcept { return _atlases.cend(); } + private: void load_atlases(); |
