NOISSUE Refactors and moving of things
This commit is contained in:
24
logic/minecraft/NullProfileStrategy.h
Normal file
24
logic/minecraft/NullProfileStrategy.h
Normal file
@ -0,0 +1,24 @@
|
||||
#pragma once
|
||||
|
||||
#include "ProfileStrategy.h"
|
||||
|
||||
class NullProfileStrategy: public ProfileStrategy
|
||||
{
|
||||
virtual bool installJarMods(QStringList filepaths)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
virtual void load() {};
|
||||
virtual bool removePatch(ProfilePatchPtr jarMod)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
virtual bool resetOrder()
|
||||
{
|
||||
return false;
|
||||
}
|
||||
virtual bool saveOrder(ProfileUtils::PatchOrder order)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user