mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-18 17:34:52 +00:00
15 lines
No EOL
393 B
C++
15 lines
No EOL
393 B
C++
#include "gui/shadps4gui.h"
|
|
#include <QtWidgets/QApplication>
|
|
#include "gui/gui_settings.h"
|
|
#include "gui/main_window.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
std::shared_ptr<gui_settings> m_gui_settings;
|
|
m_gui_settings.reset(new gui_settings());
|
|
main_window* m_main_window = new main_window(m_gui_settings, nullptr);
|
|
m_main_window->Init();
|
|
|
|
return a.exec();
|
|
} |