| 470 | } |
| 471 | |
| 472 | WorldStorage::EntitySectorStore WorldStorage::readEntitySector(ByteArray const& data) { |
| 473 | return DataStreamBuffer::deserialize<EntitySectorStore>(uncompressData(data)); |
| 474 | } |
| 475 | |
| 476 | ByteArray WorldStorage::writeEntitySector(EntitySectorStore const& store) { |
| 477 | return compressData(DataStreamBuffer::serialize(store)); |
nothing calls this directly
no test coverage detected