summaryrefslogtreecommitdiffstats
path: root/application/pages/TexturePackPage.h
blob: 3c5c27d752353f43dbb30a04810002888d16c6b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#pragma once
#include "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)
	{
	}
	virtual ~TexturePackPage() {}
	virtual bool shouldDisplay() const override
	{
		return m_inst->traits().contains("texturepacks");
	}
};