2014-06-09 00:56:48 +05:30
|
|
|
#pragma once
|
|
|
|
#include "ModFolderPage.h"
|
|
|
|
|
|
|
|
class TexturePackPage : public ModFolderPage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
explicit TexturePackPage(BaseInstance *instance, QWidget *parent = 0)
|
|
|
|
: ModFolderPage(instance->texturePackList(), "texturepacks", "resourcepacks",
|
2014-06-10 05:35:31 +05:30
|
|
|
tr("Texture packs"), "Texture-packs", parent)
|
2014-06-09 00:56:48 +05:30
|
|
|
{
|
|
|
|
m_inst = instance;
|
|
|
|
}
|
|
|
|
virtual ~TexturePackPage() {};
|
|
|
|
virtual bool shouldDisplay() override
|
|
|
|
{
|
|
|
|
return m_inst->traits().contains("texturepacks");
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
BaseInstance *m_inst;
|
|
|
|
};
|