2021-06-19 05:29:48 +05:30
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ModFolderModel.h"
|
|
|
|
|
2021-07-25 22:41:59 +05:30
|
|
|
class TexturePackFolderModel : public ModFolderModel
|
2021-06-19 05:29:48 +05:30
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit TexturePackFolderModel(const QString &dir);
|
|
|
|
|
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
|
|
|
|
};
|