summaryrefslogtreecommitdiffhomepage
path: root/tile.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-07-27 15:25:28 +0200
committerStanislaw Halik <sthalik@misaki.pl>2022-07-27 15:25:28 +0200
commit108ae0682d5d45eafc8dabe58b4509a54c66d837 (patch)
tree65979eb013cf4f99f1b63ae469c2f4c348b7bfb6 /tile.hpp
parent274c548274d9fcbb1cd9fca5b522f8a6cc8869d2 (diff)
a
Diffstat (limited to 'tile.hpp')
-rw-r--r--tile.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tile.hpp b/tile.hpp
index cf12ca05..de92ba5e 100644
--- a/tile.hpp
+++ b/tile.hpp
@@ -23,8 +23,8 @@ struct tile final
enum class pass_mode : std::uint8_t { pass_blocked, pass_yes, pass_shoot_through, pass_obscured };
using enum pass_mode;
- tile_image ground_image_;
- pass_mode passability_ = pass_obscured;
+ tile_image ground_image_, wall_west_, wall_north_;
+ pass_mode passability_ = pass_shoot_through;
explicit operator bool() const noexcept { return !!ground_image_.atlas; }
};