| 2802 | } |
| 2803 | |
| 2804 | void GameMap::updateVisibleEntities() |
| 2805 | { |
| 2806 | // Notify what happened to entities on visible tiles |
| 2807 | for (int jj = 0; jj < getMapSizeY(); ++jj) |
| 2808 | { |
| 2809 | for (int ii = 0; ii < getMapSizeX(); ++ii) |
| 2810 | { |
| 2811 | Tile* tile = getTile(ii,jj); |
| 2812 | tile->notifyEntitiesSeatsWithVision(); |
| 2813 | } |
| 2814 | } |
| 2815 | } |
| 2816 | |
| 2817 | void GameMap::fireRefreshEntities() |
| 2818 | { |
no test coverage detected