| 2142 | } |
| 2143 | |
| 2144 | void GameMap::clearGoalsForAllSeats() |
| 2145 | { |
| 2146 | for (Seat* seat : mSeats) |
| 2147 | { |
| 2148 | seat->clearUncompleteGoals(); |
| 2149 | seat->clearCompletedGoals(); |
| 2150 | } |
| 2151 | |
| 2152 | mGoalsForAllSeats.clear(); |
| 2153 | } |
| 2154 | |
| 2155 | bool GameMap::doFloodFill(Seat* seat, Tile* tile) |
| 2156 | { |
nothing calls this directly
no test coverage detected