mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 22:29:47 -06:00
get a Qt window showing up. 'tis a start, I guess.
This commit is contained in:
@ -19,6 +19,18 @@
|
||||
#ifndef MAIN_H
|
||||
#define MAIN_H
|
||||
|
||||
// put the class shit here
|
||||
#include <QMainWindow>
|
||||
|
||||
class MainWindow : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit MainWindow(QWidget* parent = nullptr);
|
||||
~MainWindow();
|
||||
|
||||
private:
|
||||
// private shit goes here
|
||||
};
|
||||
|
||||
#endif // MAIN_H
|
||||
|
Reference in New Issue
Block a user