summaryrefslogtreecommitdiffhomepage
path: root/tile.hpp
diff options
context:
space:
mode:
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; }
};