| 200 | } |
| 201 | |
| 202 | bool ReadManager::CheckTileKey(TileKey const & tileKey) const |
| 203 | { |
| 204 | for (auto const & tileInfo : m_tileInfos) |
| 205 | if (tileInfo->GetTileKey() == tileKey) |
| 206 | return !tileInfo->IsCancelled(); |
| 207 | return false; |
| 208 | } |
| 209 | |
| 210 | bool ReadManager::MustDropAllTiles(ScreenBase const & screen) const |
| 211 | { |
no test coverage detected