| 85 | } |
| 86 | |
| 87 | MojangAssetIndexInfo::Ptr assetIndexFromJson(const QJsonObject& obj) |
| 88 | { |
| 89 | auto out = std::make_shared<MojangAssetIndexInfo>(); |
| 90 | Bits::readDownloadInfo(out, obj); |
| 91 | Bits::readAssetIndex(out, obj); |
| 92 | return out; |
| 93 | } |
| 94 | |
| 95 | QJsonObject downloadInfoToJson(MojangDownloadInfo::Ptr info) |
| 96 | { |
no test coverage detected