| 191 | } |
| 192 | |
| 193 | void setMapSelectionArea(const Pos2& locA, const Pos2& locB) |
| 194 | { |
| 195 | _mapSelectionAX = std::min(locA.x, locB.x); |
| 196 | _mapSelectionAY = std::min(locA.y, locB.y); |
| 197 | _mapSelectionBX = std::max(locA.x, locB.x); |
| 198 | _mapSelectionBY = std::max(locA.y, locB.y); |
| 199 | } |
| 200 | |
| 201 | std::pair<Pos2, Pos2> getMapSelectionArea() |
| 202 | { |
no outgoing calls
no test coverage detected