| 143 | } |
| 144 | |
| 145 | static void set_arrow_color(df::coord pos, int color) |
| 146 | { |
| 147 | auto tile = Maps::getTileOccupancy(pos); |
| 148 | |
| 149 | if (tile) |
| 150 | tile->bits.arrow_color = color; |
| 151 | } |
| 152 | |
| 153 | typedef std::pair<df::coord, df::coord> coord_range; |
| 154 |
no test coverage detected