2021-06-19 00:59:48 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ModFolderModel.h"
|
|
|
|
|
2021-07-25 18:11:59 +01:00
|
|
|
class ResourcePackFolderModel : public ModFolderModel
|
2021-06-19 00:59:48 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
explicit ResourcePackFolderModel(const QString &dir);
|
|
|
|
|
|
|
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
|
|
|
|
};
|