14 lines
296 B
C
14 lines
296 B
C
|
#pragma once
|
||
|
|
||
|
#include "ModFolderModel.h"
|
||
|
|
||
|
class MULTIMC_LOGIC_EXPORT ResourcePackFolderModel : public ModFolderModel
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit ResourcePackFolderModel(const QString &dir);
|
||
|
|
||
|
QVariant headerData(int section, Qt::Orientation orientation, int role) const override;
|
||
|
};
|