mirror of
https://github.com/yuzu-emu/yuzu-android
synced 2025-09-03 16:54:02 -07:00
Add Configure widget
This commit is contained in:
31
src/citra_qt/configure_general.h
Normal file
31
src/citra_qt/configure_general.h
Normal file
@@ -0,0 +1,31 @@
|
||||
// Copyright 2016 Citra Emulator Project
|
||||
// Licensed under GPLv2 or any later version
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#ifndef CONFIGURE_GENERAL_H
|
||||
#define CONFIGURE_GENERAL_H
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
namespace Ui {
|
||||
class ConfigureGeneral;
|
||||
}
|
||||
|
||||
class ConfigureGeneral : public QWidget
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ConfigureGeneral(QWidget *parent = 0);
|
||||
~ConfigureGeneral();
|
||||
|
||||
void applyConfiguration();
|
||||
|
||||
private:
|
||||
void setConfiguration();
|
||||
|
||||
private:
|
||||
Ui::ConfigureGeneral *ui;
|
||||
};
|
||||
|
||||
#endif // CONFIGURE_GENERAL_H
|
Reference in New Issue
Block a user