summaryrefslogtreecommitdiffstats
path: root/logic/minecraft/MojangVersionFormat.h
diff options
context:
space:
mode:
Diffstat (limited to 'logic/minecraft/MojangVersionFormat.h')
-rw-r--r--logic/minecraft/MojangVersionFormat.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/logic/minecraft/MojangVersionFormat.h b/logic/minecraft/MojangVersionFormat.h
index 78bc1c42..da38bd62 100644
--- a/logic/minecraft/MojangVersionFormat.h
+++ b/logic/minecraft/MojangVersionFormat.h
@@ -3,6 +3,12 @@
#include <minecraft/VersionFile.h>
#include <QJsonDocument>
-namespace MojangVersionFormat {
- VersionFilePtr fromJson(const QJsonDocument &doc, const QString &filename);
-}
+class MojangVersionFormat
+{
+public:
+ // version files / profile patches
+ static VersionFilePtr versionFileFromJson(const QJsonDocument &doc, const QString &filename);
+ /*
+ static QJsonDocument profilePatchToJson(const ProfilePatchPtr &patch);
+ */
+};