mirror of
https://github.com/vanilla-wiiu/vanilla.git
synced 2025-01-22 08:11:47 -05:00
14 lines
No EOL
201 B
C++
14 lines
No EOL
201 B
C++
#include <QApplication>
|
|
#include <QMainWindow>
|
|
|
|
#include "mainwindow.h"
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
MainWindow mw;
|
|
mw.show();
|
|
|
|
return app.exec();
|
|
} |