mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-27 15:30:35 +00:00
23 lines
257 B
C++
23 lines
257 B
C++
#ifndef CONTROLS_H
|
|
#define CONTROLS_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class Controls;
|
|
}
|
|
|
|
class Controls : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit Controls(QWidget *parent = 0);
|
|
~Controls();
|
|
|
|
private:
|
|
Ui::Controls *ui;
|
|
};
|
|
|
|
#endif // CONTROLS_H
|