mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-04-30 14:44:31 +02:00
13 lines
272 B
C++
13 lines
272 B
C++
#pragma once
|
|
|
|
#include "ResourceFolderModel.h"
|
|
|
|
class ShaderPackFolderModel : public ResourceFolderModel {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ShaderPackFolderModel(const QString& dir, BaseInstance* instance)
|
|
: ResourceFolderModel(QDir(dir), instance)
|
|
{}
|
|
};
|