diff options
Diffstat (limited to 'application/pages/TexturePackPage.h')
-rw-r--r-- | application/pages/TexturePackPage.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/application/pages/TexturePackPage.h b/application/pages/TexturePackPage.h deleted file mode 100644 index b03614f0..00000000 --- a/application/pages/TexturePackPage.h +++ /dev/null @@ -1,19 +0,0 @@ -#pragma once -#include "ModFolderPage.h" -#include "ui_ModFolderPage.h" - -class TexturePackPage : public ModFolderPage -{ -public: - explicit TexturePackPage(MinecraftInstance *instance, QWidget *parent = 0) - : ModFolderPage(instance, instance->texturePackList(), "texturepacks", "resourcepacks", - tr("Texture packs"), "Texture-packs", parent) - { - ui->configFolderBtn->setHidden(true); - } - virtual ~TexturePackPage() {} - virtual bool shouldDisplay() const override - { - return m_inst->traits().contains("texturepacks"); - } -}; |