mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-09-14 23:24:27 -04:00
21 lines
384 B
C++
21 lines
384 B
C++
#pragma once
|
|
|
|
#include <QDialog>
|
|
#include <QObject>
|
|
#include <QStringList>
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class UntrustedModsDialog;
|
|
}
|
|
|
|
class UntrustedModsDialog : public QDialog {
|
|
Q_OBJECT
|
|
public:
|
|
explicit UntrustedModsDialog(const QStringList& paths, QWidget* parent = nullptr);
|
|
~UntrustedModsDialog() override;
|
|
|
|
private:
|
|
Ui::UntrustedModsDialog* m_ui;
|
|
};
|