mirror of
https://github.com/PCSX2/pcsx2.git
synced 2025-12-16 04:08:48 +00:00
21 lines
392 B
C++
21 lines
392 B
C++
// SPDX-FileCopyrightText: 2002-2025 PCSX2 Dev Team
|
|
// SPDX-License-Identifier: GPL-3.0+
|
|
|
|
#pragma once
|
|
|
|
#include "ui_GameFixSettingsWidget.h"
|
|
|
|
#include "SettingsWidget.h"
|
|
|
|
class GameFixSettingsWidget : public SettingsWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
GameFixSettingsWidget(SettingsWindow* settings_dialog, QWidget* parent);
|
|
~GameFixSettingsWidget();
|
|
|
|
private:
|
|
Ui::GameFixSettingsWidget m_ui;
|
|
};
|