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