From 3e51922e2cfd9430c1a45074107d467f6c1e5e0e Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Tue, 26 Sep 2023 07:53:00 +0200 Subject: add todo --- src/object.hpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src') diff --git a/src/object.hpp b/src/object.hpp index 2abd49b5..fca4640d 100644 --- a/src/object.hpp +++ b/src/object.hpp @@ -24,6 +24,7 @@ struct object_proto object_type type : 3 = object_type::none; rotation r : rotation_BITS = rotation::N; pass_mode pass : pass_mode_BITS = pass_mode::see_through; // todo move to struct scenery, add inherit bit + bool inherit_pass_mode = true; // todo object_proto& operator=(const object_proto&); object_proto(); @@ -49,6 +50,8 @@ struct object uint16_t delta = 0, frame = 0; const rotation r = rotation::N; const pass_mode pass = pass_mode::see_through; + const bool inherit_pass_mode = true; // todo + //char pad[3]; // got 3 bytes left virtual ~object() noexcept; -- cgit v1.2.3