mirror of
https://github.com/libretro/Play-.git
synced 2024-12-02 22:46:23 +00:00
12 lines
160 B
C++
12 lines
160 B
C++
#include <QApplication>
|
|
#include "mainwindow.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
MainWindow w;
|
|
w.show();
|
|
|
|
return a.exec();
|
|
}
|