diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2022-07-27 15:25:28 +0200 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-07-27 15:25:28 +0200 |
| commit | 108ae0682d5d45eafc8dabe58b4509a54c66d837 (patch) | |
| tree | 65979eb013cf4f99f1b63ae469c2f4c348b7bfb6 /tile.hpp | |
| parent | 274c548274d9fcbb1cd9fca5b522f8a6cc8869d2 (diff) | |
a
Diffstat (limited to 'tile.hpp')
| -rw-r--r-- | tile.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; } }; |
