mirror of
https://github.com/devinacker/bsnes-plus.git
synced 2025-04-02 10:52:46 -04:00
14 lines
229 B
C++
14 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;
|