mirror of
https://github.com/MultiMC/MultiMC5.git
synced 2024-12-29 00:20:21 +00:00
9497b7e96c
There is no end to them in sight
13 lines
205 B
C++
13 lines
205 B
C++
#pragma once
|
|
#include <QString>
|
|
#include <QJsonObject>
|
|
#include <memory>
|
|
class Jarmod;
|
|
typedef std::shared_ptr<Jarmod> JarmodPtr;
|
|
class Jarmod
|
|
{
|
|
public: /* data */
|
|
QString name;
|
|
QString originalName;
|
|
};
|