* Get the value of a map position. * @param x Horizontal coordinate of position being queried. * @param y Vertical coordinate of position being queried. * @return Map value at the specified position. * * @pre Position must be within map limits */
| 192 | * @pre Position must be within map limits |
| 193 | */ |
| 194 | inline MapValue ToolEffects::getMapValue(int x, int y) const |
| 195 | { |
| 196 | return this->getMapValue(Position(x, y)); |
| 197 | } |
| 198 | |
| 199 | /** |
| 200 | * Set a new map value. |
no test coverage detected