| 675 | return this->isBuildable(position.x, position.y, includeBuildings); |
| 676 | } |
| 677 | bool Game::isVisible(TilePosition position) const |
| 678 | { |
| 679 | return this->isVisible(position.x, position.y); |
| 680 | } |
| 681 | bool Game::isExplored(TilePosition position) const |
| 682 | { |
| 683 | return this->isExplored(position.x, position.y); |
no outgoing calls
no test coverage detected