2022-01-14 14:13:42 +05:30
|
|
|
#pragma once
|
|
|
|
|
2022-03-03 03:05:59 +05:30
|
|
|
#include "modplatform/ModIndex.h"
|
|
|
|
|
2022-01-14 14:13:42 +05:30
|
|
|
#include <QNetworkAccessManager>
|
2022-01-15 14:55:24 +05:30
|
|
|
#include "BaseInstance.h"
|
2022-01-14 14:13:42 +05:30
|
|
|
|
|
|
|
namespace Modrinth {
|
|
|
|
|
2022-03-03 03:05:59 +05:30
|
|
|
void loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj);
|
|
|
|
void loadIndexedPackVersions(ModPlatform::IndexedPack& pack,
|
|
|
|
QJsonArray& arr,
|
|
|
|
const shared_qobject_ptr<QNetworkAccessManager>& network,
|
|
|
|
BaseInstance* inst);
|
2022-01-14 14:13:42 +05:30
|
|
|
|
2022-03-03 03:05:59 +05:30
|
|
|
} // namespace Modrinth
|