| 123 | } |
| 124 | |
| 125 | List<WorldStorage::Sector> WorldStorage::sectorsForRegion(RectI const& region) const { |
| 126 | return m_tileArray->validSectorsFor(region); |
| 127 | } |
| 128 | |
| 129 | Maybe<RectI> WorldStorage::regionForSector(Sector sector) const { |
| 130 | if (m_tileArray->sectorValid(sector)) |
no test coverage detected