diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/scenery.hpp | 4 | ||||
| -rw-r--r-- | src/world.hpp | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/scenery.hpp b/src/scenery.hpp index e5313c25..90cead3d 100644 --- a/src/scenery.hpp +++ b/src/scenery.hpp @@ -42,7 +42,9 @@ struct scenery final scenery() noexcept; scenery(none_tag_t) noexcept; - scenery(generic_tag_t, const anim_atlas& atlas, rotation r, frame_t frame = 0, bool passable = false, bool blocks_view = false, bool animated = false, bool active = false, bool interactive = false); + scenery(generic_tag_t, const anim_atlas& atlas, rotation r, frame_t frame = 0, + bool passable = false, bool blocks_view = false, bool animated = false, + bool active = false, bool interactive = false); scenery(door_tag_t, const anim_atlas& atlas, rotation r, bool is_open = false); bool can_activate() const noexcept; diff --git a/src/world.hpp b/src/world.hpp index 69710bb6..b95baf62 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -45,7 +45,7 @@ public: void collect(bool force = false); std::size_t size() const noexcept { return _chunks.size(); } - [[deprecated]] const auto& chunks() const noexcept { return _chunks; } // only for serialization + [[deprecated]] const auto& chunks() const noexcept { return _chunks; } // only for serialization void serialize(StringView filename); static world deserialize(StringView filename); |
