| 57 | } |
| 58 | |
| 59 | bool mapHas1(const tile_coord_t x, const tile_coord_t y) const |
| 60 | { |
| 61 | return (data[y * kMapColumns + x] & (1 << enumValue(CatchmentFlags::flag_0))) != 0; |
| 62 | } |
| 63 | bool mapHas2(const tile_coord_t x, const tile_coord_t y) const |
| 64 | { |
| 65 | return (data[y * kMapColumns + x] & (1 << enumValue(CatchmentFlags::flag_1))) != 0; |
no test coverage detected