mirror of
https://github.com/PabloMK7/citra.git
synced 2025-08-11 14:16:50 +00:00
common: Remove dependency from core
This commit is contained in:
parent
ba98bf058a
commit
9527bfffed
14 changed files with 105 additions and 96 deletions
src/citra_qt/configuration
|
@ -13,11 +13,15 @@ namespace Ui {
|
|||
class ConfigureDialog;
|
||||
}
|
||||
|
||||
namespace Core {
|
||||
class System;
|
||||
}
|
||||
|
||||
class ConfigureDialog : public QDialog {
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ConfigureDialog(QWidget* parent, HotkeyRegistry& registry,
|
||||
explicit ConfigureDialog(QWidget* parent, HotkeyRegistry& registry, Core::System& system,
|
||||
bool enable_web_config = true);
|
||||
~ConfigureDialog() override;
|
||||
|
||||
|
@ -37,4 +41,5 @@ private:
|
|||
|
||||
std::unique_ptr<Ui::ConfigureDialog> ui;
|
||||
HotkeyRegistry& registry;
|
||||
Core::System& system;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue