| 223 | } |
| 224 | |
| 225 | static void set(TilePos2 pos, TileElement* elements) |
| 226 | { |
| 227 | const auto index = getTileIndex(pos); |
| 228 | _tiles[index] = elements; |
| 229 | } |
| 230 | |
| 231 | static std::pair<TileElement*, TileElement*> insertElementPrepareDest(const TilePos2 pos) |
| 232 | { |
no test coverage detected