summaryrefslogtreecommitdiffhomepage
path: root/src/object.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-05-21 09:28:24 +0200
committerStanislaw Halik <sthalik@misaki.pl>2024-05-21 09:28:24 +0200
commit45e2d53abaacdaae9d00b5e989219b045f0540dc (patch)
tree93aaeedd022c713f9a0bbcc9c8b114e5ec55bfde /src/object.hpp
parentdf58a09b9f673d4617f552ecd0e3354b51883e05 (diff)
start thinking about composite objects
Diffstat (limited to 'src/object.hpp')
-rw-r--r--src/object.hpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/object.hpp b/src/object.hpp
index 9de6e880..e121a927 100644
--- a/src/object.hpp
+++ b/src/object.hpp
@@ -56,6 +56,7 @@ struct object
const rotation r = rotation::N; // todo remove bitfield?
const pass_mode pass = pass_mode::see_through;
bool ephemeral : 1 = false;
+ bool gone : 1 = false;
//char _pad[4]; // got 4 bytes left
virtual ~object() noexcept;