summaryrefslogtreecommitdiffhomepage
path: root/src/scenery.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-02-26 18:34:03 +0100
committerStanislaw Halik <sthalik@misaki.pl>2023-02-26 18:34:03 +0100
commite8dc8c27155afade10310c84678959f2d7456641 (patch)
tree84ba00a0cbab8b8fed9066e2afec38731910a5d7 /src/scenery.hpp
parent1831299cd2b747cbb53eaa149c9f7a41ae1cd111 (diff)
wip
Diffstat (limited to 'src/scenery.hpp')
-rw-r--r--src/scenery.hpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/scenery.hpp b/src/scenery.hpp
index ea662d92..962e53c5 100644
--- a/src/scenery.hpp
+++ b/src/scenery.hpp
@@ -48,9 +48,11 @@ struct scenery final
constexpr scenery() noexcept;
constexpr scenery(none_tag_t) noexcept;
- scenery(generic_tag_t, const anim_atlas& atlas, rotation r, frame_t frame = 0,
- pass_mode passability = pass_mode::shoot_through, bool active = false, bool interactive = false);
- scenery(door_tag_t, const anim_atlas& atlas, rotation r, bool is_open = false);
+ scenery(generic_tag_t, const anim_atlas& atlas, rotation r, frame_t frame,
+ pass_mode passability, bool active, bool interactive,
+ Vector2b offset, Vector2b bbox_offset, Vector2ub bbox_size);
+ scenery(door_tag_t, const anim_atlas& atlas, rotation r, bool is_open,
+ Vector2b offset, Vector2b bbox_offset, Vector2ub bbox_size);
bool operator==(const scenery&) const noexcept;