mirror of
https://github.com/libretro/dolphin
synced 2024-11-05 04:53:51 -05:00
23 lines
374 B
C++
23 lines
374 B
C++
// Copyright 2016 Dolphin Emulator Project
|
|
// Licensed under GPLv2+
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <QDialog>
|
|
|
|
namespace UICommon
|
|
{
|
|
class GameFile;
|
|
}
|
|
|
|
class PropertiesDialog final : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit PropertiesDialog(QWidget* parent, const UICommon::GameFile& game);
|
|
|
|
signals:
|
|
void OpenGeneralSettings();
|
|
};
|