mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2025-01-07 09:54:30 +00:00
9497b7e96c
There is no end to them in sight
15 lines
325 B
C++
15 lines
325 B
C++
#pragma once
|
|
|
|
#include <minecraft/VersionFile.h>
|
|
#include <QJsonDocument>
|
|
|
|
class MojangVersionFormat
|
|
{
|
|
public:
|
|
// version files / profile patches
|
|
static VersionFilePtr versionFileFromJson(const QJsonDocument &doc, const QString &filename);
|
|
/*
|
|
static QJsonDocument profilePatchToJson(const ProfilePatchPtr &patch);
|
|
*/
|
|
};
|