mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
15 lines
294 B
C++
15 lines
294 B
C++
|
|
// Qt5.2+ frontend implementation for rpcs3. Known to work on Windows, Linux, Mac
|
||
|
|
// by Sacha Refshauge
|
||
|
|
|
||
|
|
#include <QApplication>
|
||
|
|
#include <QDebug>
|
||
|
|
#include <QDesktopWidget>
|
||
|
|
#include "rpcs3_app.h"
|
||
|
|
|
||
|
|
int main(int argc, char** argv)
|
||
|
|
{
|
||
|
|
rpcs3_app app(argc, argv);
|
||
|
|
app.Init();
|
||
|
|
return app.exec();
|
||
|
|
}
|