diff options
author | Petr Mrázek <peterix@gmail.com> | 2014-05-10 01:53:32 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2014-06-09 01:38:30 +0200 |
commit | 92abe4c603e1f4931cd02ae6b752cb7054d8e30d (patch) | |
tree | 571c6bc638b474af7e44f4db626f15e301286a65 /logic/minecraft/VersionPatch.h | |
parent | 9860d5ee12acde8f7893848dac53f59ea66da281 (diff) | |
download | PrismLauncher-92abe4c603e1f4931cd02ae6b752cb7054d8e30d.tar.gz PrismLauncher-92abe4c603e1f4931cd02ae6b752cb7054d8e30d.tar.bz2 PrismLauncher-92abe4c603e1f4931cd02ae6b752cb7054d8e30d.zip |
All of the broken legacy things work.
Diffstat (limited to 'logic/minecraft/VersionPatch.h')
-rw-r--r-- | logic/minecraft/VersionPatch.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/logic/minecraft/VersionPatch.h b/logic/minecraft/VersionPatch.h index c2258787..cdb80199 100644 --- a/logic/minecraft/VersionPatch.h +++ b/logic/minecraft/VersionPatch.h @@ -1,6 +1,8 @@ #pragma once #include <memory> +#include <QList> +#include "JarMod.h" class VersionFinal; class VersionPatch @@ -8,8 +10,22 @@ class VersionPatch public: virtual ~VersionPatch(){}; virtual void applyTo(VersionFinal *version) = 0; + virtual bool isVanilla() = 0; virtual bool hasJarMods() = 0; + virtual QList<JarmodPtr> getJarMods() = 0; + + virtual bool isMoveable() + { + return getOrder() >= 0; + } + virtual void setOrder(int order) = 0; + virtual int getOrder() = 0; + + virtual QString getPatchID() = 0; + virtual QString getPatchName() = 0; + virtual QString getPatchVersion() = 0; + virtual QString getPatchFilename() = 0; }; typedef std::shared_ptr<VersionPatch> VersionPatchPtr; |