rpcsx/rpcs3/rpcs3qt/main.cpp

20 lines
313 B
C++
Raw Normal View History

// Qt5.2+ frontend implementation for rpcs3. Known to work on Windows, Linux, Mac
2013-11-27 07:37:46 +01:00
// by Sacha Refshauge
2016-02-01 22:40:38 +01:00
#ifdef QT_UI
2017-02-03 18:19:10 +01:00
#include <QApplication>
#include "mainwindow.h"
2013-11-27 07:37:46 +01:00
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
2013-11-27 07:37:46 +01:00
MainWindow mainWin;
mainWin.show();
2013-11-27 07:37:46 +01:00
return app.exec();
}
#endif // QT_UI