| 1703 | |
| 1704 | |
| 1705 | bool cChunkMap::ForEachEntity(cEntityCallback & a_Callback) |
| 1706 | { |
| 1707 | cCSLock Lock(m_CSLayers); |
| 1708 | for (cChunkLayerList::const_iterator itr = m_Layers.begin(); itr != m_Layers.end(); ++itr) |
| 1709 | { |
| 1710 | if (!(*itr)->ForEachEntity(a_Callback)) |
| 1711 | { |
| 1712 | return false; |
| 1713 | } |
| 1714 | } |
| 1715 | return true; |
| 1716 | } |
| 1717 | |
| 1718 | |
| 1719 |
no test coverage detected