mirror of
https://git.suyu.dev/suyu/suyu
synced 2025-12-10 06:42:05 -06:00
Co-authored-by: palfaiate <syl.paulo.alfaiate@gmail.com> Co-authored-by: SylverDiscord51 <p71468162@gmail.com> Co-committed-by: SylverDiscord51 <p71468162@gmail.com>
23 lines
384 B
C++
23 lines
384 B
C++
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#pragma once
|
|
|
|
#include <memory>
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class AboutDialog;
|
|
}
|
|
|
|
class AboutDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AboutDialog(QWidget* parent);
|
|
~AboutDialog() override;
|
|
|
|
private:
|
|
std::unique_ptr<Ui::AboutDialog> ui;
|
|
};
|