mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-05-01 07:04:32 +02:00
13 lines
317 B
C++
13 lines
317 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);
|
|
};
|