mirror of https://github.com/bsnes-emu/bsnes.git
15 lines
229 B
C++
15 lines
229 B
C++
![]() |
class AboutWindow : public Window {
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
QVBoxLayout *layout;
|
||
|
struct Logo : public QWidget {
|
||
|
void paintEvent(QPaintEvent*);
|
||
|
} *logo;
|
||
|
QLabel *info;
|
||
|
|
||
|
AboutWindow();
|
||
|
};
|
||
|
|
||
|
extern AboutWindow *aboutWindow;
|