diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-01-27 22:31:07 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-04-02 00:14:06 +0200 |
commit | 791221e923586bb717396ecf18bd13e57034df99 (patch) | |
tree | 9f608af07375b38626c8964671620477158341ba /logic/minecraft/ProfilePatch.h | |
parent | 593111b14463e9d5d08256061b981b5ab1cfb710 (diff) | |
download | MultiMC-791221e923586bb717396ecf18bd13e57034df99.tar MultiMC-791221e923586bb717396ecf18bd13e57034df99.tar.gz MultiMC-791221e923586bb717396ecf18bd13e57034df99.tar.lz MultiMC-791221e923586bb717396ecf18bd13e57034df99.tar.xz MultiMC-791221e923586bb717396ecf18bd13e57034df99.zip |
NOISSUE Refactors and moving of things
Diffstat (limited to 'logic/minecraft/ProfilePatch.h')
-rw-r--r-- | logic/minecraft/ProfilePatch.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/logic/minecraft/ProfilePatch.h b/logic/minecraft/ProfilePatch.h new file mode 100644 index 00000000..2e97677e --- /dev/null +++ b/logic/minecraft/ProfilePatch.h @@ -0,0 +1,32 @@ +#pragma once + +#include <memory> +#include <QList> +#include "JarMod.h" + +class MinecraftProfile; +class ProfilePatch +{ +public: + virtual ~ProfilePatch(){}; + virtual void applyTo(MinecraftProfile *version) = 0; + + virtual bool isMinecraftVersion() = 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; + virtual bool isCustom() = 0; +}; + +typedef std::shared_ptr<ProfilePatch> ProfilePatchPtr; |