| 413 | } |
| 414 | |
| 415 | void TileContainer::tileToPacket(ODPacket& packet, Tile* tile) const |
| 416 | { |
| 417 | int32_t x = tile->getX(); |
| 418 | int32_t y = tile->getY(); |
| 419 | packet << x << y; |
| 420 | } |
| 421 | |
| 422 | Tile* TileContainer::tileFromPacket(ODPacket& packet) const |
| 423 | { |
no test coverage detected