Merge branch '164-crash-on-patching-and-possibly-right-after-login' into 'main/atys...
[ryzomcore.git] / nelns / login_system / nel_launcher_qt / main.cpp
blob0cfb5778923e5ac39ed3259554bd64c8a9c338b0
1 #include <QtGui/QApplication>
2 #include "nel/misc/app_context.h"
3 #include "nel_launcher_dlg.h"
6 int main(int argc, char *argv[])
9 // Standard initialization
10 // If you are not using these features and wish to reduce the size
11 // of your final executable, you should remove from the following
12 // the specific initialization routines you do not need.
13 NLMISC::CApplicationContext myApplicationContext;
15 //Q_INIT_RESOURCE(tile_edit_qt);
16 QApplication app(argc, argv);
18 CNelLauncherDlg *nelLauncherDlg = new CNelLauncherDlg();
19 nelLauncherDlg->show();
20 //CTile_edit_dlg *tileEdit = new CTile_edit_dlg;
21 //tileEdit->show();
23 return app.exec();