pollymc/logic/minecraft/ProfilePatch.h

33 lines
693 B
C
Raw Normal View History

#pragma once
#include <memory>
2014-05-10 05:23:32 +05:30
#include <QList>
#include "JarMod.h"
2015-01-28 03:01:07 +05:30
class MinecraftProfile;
class ProfilePatch
{
public:
2015-01-28 03:01:07 +05:30
virtual ~ProfilePatch(){};
virtual void applyTo(MinecraftProfile *version) = 0;
virtual bool isMinecraftVersion() = 0;
virtual bool hasJarMods() = 0;
2014-05-10 05:23:32 +05:30
virtual QList<JarmodPtr> getJarMods() = 0;
2015-01-28 03:01:07 +05:30
2014-05-10 05:23:32 +05:30
virtual bool isMoveable()
{
return getOrder() >= 0;
}
virtual void setOrder(int order) = 0;
virtual int getOrder() = 0;
2015-01-28 03:01:07 +05:30
2014-05-10 05:23:32 +05:30
virtual QString getPatchID() = 0;
virtual QString getPatchName() = 0;
virtual QString getPatchVersion() = 0;
virtual QString getPatchFilename() = 0;
virtual bool isCustom() = 0;
};
2015-01-28 03:01:07 +05:30
typedef std::shared_ptr<ProfilePatch> ProfilePatchPtr;