summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
m---------corrade0
m---------magnum0
m---------magnum-integration0
m---------magnum-plugins0
-rw-r--r--tile.hpp4
5 files changed, 2 insertions, 2 deletions
diff --git a/corrade b/corrade
-Subproject f2f90fd117d5b7a2373cb37f730461faec6e8e0
+Subproject 481cdeb5e06bcd36b940203d3f88cbbe83e9d16
diff --git a/magnum b/magnum
-Subproject f3965ddf7e52476144a1cf4c8aed3bc44233aa1
+Subproject e8e9aeec7faee941620a39ee016cdd0df880ddf
diff --git a/magnum-integration b/magnum-integration
-Subproject 79747545dbe711055f7f06bcf6ac5c76541ab6c
+Subproject fa603040834aa2346af280a707578598011c8c3
diff --git a/magnum-plugins b/magnum-plugins
-Subproject 98a5c44dddc223e494380cd9c2f017c9e850c94
+Subproject 2fadb319fc8675347e5f949b24cf39b20ce972f
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; }
};