1
0
mirror of https://github.com/MultiMC/MultiMC5.git synced 2025-01-27 06:35:17 +00:00
2015-04-02 00:14:06 +02:00

15 lines
307 B
C++

#pragma once
#include <QString>
#include <QJsonObject>
#include <memory>
class Jarmod;
typedef std::shared_ptr<Jarmod> JarmodPtr;
class Jarmod
{
public: /* methods */
static JarmodPtr fromJson(const QJsonObject &libObj, const QString &filename);
QJsonObject toJson();
public: /* data */
QString name;
};