mirror of
https://github.com/libretro/ppsspp.git
synced 2025-02-14 13:59:24 +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
|