881b2f2b38
Since there's little difference between them, let's remove duplication and merge them.
21 lines
514 B
C++
21 lines
514 B
C++
//
|
|
// Created by timoreo on 16/01/2022.
|
|
//
|
|
|
|
#pragma once
|
|
|
|
#include "modplatform/ModIndex.h"
|
|
|
|
#include <QNetworkAccessManager>
|
|
#include "BaseInstance.h"
|
|
|
|
namespace FlameMod {
|
|
|
|
void loadIndexedPack(ModPlatform::IndexedPack& m, QJsonObject& obj);
|
|
void loadIndexedPackVersions(ModPlatform::IndexedPack& pack,
|
|
QJsonArray& arr,
|
|
const shared_qobject_ptr<QNetworkAccessManager>& network,
|
|
BaseInstance* inst);
|
|
|
|
} // namespace FlameMod
|