| 671 | return this->getGroundHeight(position.x, position.y); |
| 672 | } |
| 673 | bool Game::isBuildable(TilePosition position, bool includeBuildings) const |
| 674 | { |
| 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); |