mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-26 07:18:59 +02:00
I'm tired of dealing with this tbh Signed-off-by: crueter <crueter@eden-emu.dev> Reviewed-on: https://git.eden-emu.dev/eden-emu/eden/pulls/3706 Reviewed-by: Lizzie <lizzie@eden-emu.dev>
27 lines
521 B
C++
27 lines
521 B
C++
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <QDialog>
|
|
#include <QStandardItemModel>
|
|
|
|
namespace Ui {
|
|
class ModSelectDialog;
|
|
}
|
|
|
|
class ModSelectDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit ModSelectDialog(const QStringList& mods, QWidget* parent = nullptr);
|
|
~ModSelectDialog();
|
|
|
|
signals:
|
|
void modsSelected(const QStringList& mods);
|
|
|
|
private:
|
|
Ui::ModSelectDialog* ui;
|
|
|
|
QStandardItemModel* item_model;
|
|
};
|