mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 01:54:20 +03:00
28 lines
719 B
C++
28 lines
719 B
C++
// SPDX-FileCopyrightText: 2023 flowln <flowlnlnln@gmail.com>
|
|
//
|
|
// SPDX-License-Identifier: GPL-3.0-only
|
|
|
|
#pragma once
|
|
|
|
#include "ui/pages/modplatform/ResourcePage.h"
|
|
|
|
namespace ResourceDownload {
|
|
|
|
class TexturePackDownloadDialog;
|
|
class TexturePackResourceModel;
|
|
|
|
class TexturePackResourcePage : public ResourcePage {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
TexturePackResourcePage(ResourceDownloadDialog* dialog,
|
|
BaseInstance& instance,
|
|
ResourceProviderData p,
|
|
ResourceAPI* api,
|
|
TexturePackResourceModel* model = nullptr);
|
|
|
|
protected slots:
|
|
void triggerSearch() override;
|
|
};
|
|
|
|
} // namespace ResourceDownload
|