diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-29 10:05:37 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-29 10:05:37 +0100 |
commit | bf8eb8290fbca1e4dfddd2b20fbd98a526306f72 (patch) | |
tree | 3234c22ddd9fe6fcbcd80c0c509a4a0f47b3bb37 /editor/scenery-editor.hpp | |
parent | fc8f9bd3fb812aa70346d8ed9de4911707ed8df6 (diff) |
scenery gui work
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(); |