| 80 | } |
| 81 | |
| 82 | MojangDownloadInfo::Ptr downloadInfoFromJson(const QJsonObject &obj) |
| 83 | { |
| 84 | auto out = std::make_shared<MojangDownloadInfo>(); |
| 85 | Bits::readDownloadInfo(out, obj); |
| 86 | return out; |
| 87 | } |
| 88 | |
| 89 | MojangAssetIndexInfo::Ptr assetIndexFromJson(const QJsonObject &obj) |
| 90 | { |
no test coverage detected