mirror of
https://git.eden-emu.dev/eden-emu/eden
synced 2026-04-20 08: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>
32 lines
668 B
C++
32 lines
668 B
C++
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#ifndef RYUJINX_DIALOG_H
|
|
#define RYUJINX_DIALOG_H
|
|
|
|
#include <filesystem>
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class RyujinxDialog;
|
|
}
|
|
|
|
class RyujinxDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit RyujinxDialog(std::filesystem::path eden_path, std::filesystem::path ryu_path,
|
|
QWidget* parent = nullptr);
|
|
~RyujinxDialog();
|
|
|
|
private slots:
|
|
void fromEden();
|
|
void fromRyujinx();
|
|
|
|
private:
|
|
Ui::RyujinxDialog* ui;
|
|
std::filesystem::path m_eden;
|
|
std::filesystem::path m_ryu;
|
|
};
|
|
|
|
#endif // RYUJINX_DIALOG_H
|