You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
GlosSI/GloSC_GameLauncher/main.cpp

14 lines
276 B
C++

#include "GloSC_GameLauncher.h"
#include <QtWidgets/QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
GloSC_GameLauncher w;
w.show();
QObject::connect(&a, SIGNAL(aboutToQuit()), &w, SLOT(isAboutToBeKilled()));
return a.exec();
}