| 2708 | } |
| 2709 | |
| 2710 | void GameMap::logFloodFileTiles() |
| 2711 | { |
| 2712 | for(int yy = 0; yy < getMapSizeY(); ++yy) |
| 2713 | { |
| 2714 | for(int xx = 0; xx < getMapSizeX(); ++xx) |
| 2715 | { |
| 2716 | Tile* tile = getTile(xx, yy); |
| 2717 | tile->logFloodFill(); |
| 2718 | } |
| 2719 | } |
| 2720 | } |
| 2721 | |
| 2722 | void GameMap::consoleSetCreatureDestination(const std::string& creatureName, int x, int y) |
| 2723 | { |
no test coverage detected