mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-22 10:04:39 +00:00
10 lines
172 B
C++
10 lines
172 B
C++
#include "gui/shadps4gui.h"
|
|
#include <QtWidgets/QApplication>
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
shadps4gui w;
|
|
w.show();
|
|
return a.exec();
|
|
} |