* Get the tile of a map position. * @param pos Position being queried. * @return Tile at the specified position. * * @pre Position must be within map limits */
| 149 | * @pre Position must be within map limits |
| 150 | */ |
| 151 | inline MapTile ToolEffects::getMapTile(const Position& pos) const |
| 152 | { |
| 153 | return this->getMapValue(pos) & LOMASK; |
| 154 | } |
| 155 | |
| 156 | /** |
| 157 | * Get the tile of a map position. |
no test coverage detected