mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2025-04-30 22:54:38 +02:00
15 lines
423 B
C++
15 lines
423 B
C++
#pragma once
|
|
|
|
#include "ResourceFolderModel.h"
|
|
|
|
class ShaderPackFolderModel : public ResourceFolderModel {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ShaderPackFolderModel(const QDir& dir, BaseInstance* instance, bool is_indexed, bool create_dir, QObject* parent = nullptr)
|
|
: ResourceFolderModel(dir, instance, is_indexed, create_dir, parent)
|
|
{}
|
|
|
|
virtual QString id() const override { return "shaderpacks"; }
|
|
};
|